| 1234567891011121314151617181920212223 |
- <?php
- namespace app\common\model;
- /**
- * 渠道冻结表
- * @author Administrator
- */
- class CpsChannel extends \think\Model
- {
- protected $pk = 'id';
- protected $table= 'cy_cps_channel';
- /**
- * 一对一关联,获取渠道名称
- * @return $this
- */
- public function Channel()
- {
- return $this->hasOne('Channel','id','channel_id')->field('name');
- }
- }
|