12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace catchAdmin\device\model;
- use \think\Model as Model;
- // use catchAdmin\permissions\model\DataRangScopeTrait;
- use think\facade\Db;
- class RfRecord extends Model
- {
- // use DataRangScopeTrait;
- protected $connection = 'oracle';
- // 表名
- public $name = 'dssc2.w_dw_rf_record';
- // 数据库字段映射
- public $field = array( );
- /**
- * 获取基站列表
- */
- public function getList()
- {
- $res = $this
-
- ->field('a.RF_FLAGID,a.RF_STAT,to_char(a.RF_DATE,\'yyyy-mm-dd hh24:mi:ss\') RF_DATE')
- ->paginate();
-
- // var_dump($this->getLastSql());
- return $res;
- }
-
-
- }
|