AuthorService.php 350 B

12345678910111213141516171819
  1. <?php
  2. namespace app\admin\model\cms;
  3. use think\Model;
  4. class AuthorService extends Model
  5. {
  6. // 表名
  7. protected $name = 'cms_author_service';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. }