Community.php 502 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace addons\qingdongams\model;
  3. use think\Model;
  4. use traits\model\SoftDelete;
  5. /**
  6. *动态表
  7. */
  8. class Community Extends Model
  9. {
  10. use SoftDelete;
  11. // 表名,不含前缀
  12. protected $name = 'qingdongams_community';
  13. // 开启自动写入时间戳字段
  14. protected $autoWriteTimestamp = 'int';
  15. // 定义时间戳字段名
  16. protected $createTime = 'createtime';
  17. protected $updateTime = 'updatetime';
  18. protected $deleteTime = 'deletetime';
  19. }