| 1234567891011121314151617 |
- <?php
- namespace app\common\model;
- /**
- * 渠道冻结表
- * @author Administrator
- */
- class CpsChannelGame extends \think\Model
- {
- protected $pk = 'id';
- protected $table= 'cy_cps_channel_game';
- // 阻止在view页面,时间格式自动转换
- protected $dateFormat = false;
- }
|