CustomizedCate.php 353 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. /**
  5. */
  6. class CustomizedCate extends Model
  7. {
  8. // 表名
  9. protected $table = 'ad';
  10. // 自动写入时间戳字段
  11. protected $autoWriteTimestamp = true;
  12. // 定义时间戳字段名
  13. protected $createTime = 'createtime';
  14. // 追加属性
  15. protected $append = [
  16. ];
  17. }