CpsChannelGame.php 297 B

1234567891011121314151617
  1. <?php
  2. namespace app\common\model;
  3. /**
  4. * 渠道冻结表
  5. * @author Administrator
  6. */
  7. class CpsChannelGame extends \think\Model
  8. {
  9. protected $pk = 'id';
  10. protected $table= 'cy_cps_channel_game';
  11. // 阻止在view页面,时间格式自动转换
  12. protected $dateFormat = false;
  13. }