ChannelGame.php 250 B

12345678910111213
  1. <?php
  2. namespace app\common\model;
  3. class ChannelGame extends \think\Model
  4. {
  5. protected $pk = 'id';
  6. protected $table= 'cy_channel_game';
  7. public function getCreateTimeAttr($value)
  8. {
  9. return date('Y-m-d H:i:s', $value);
  10. }
  11. }