Seastype.php 480 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace addons\qingdongams\model;
  3. use think\Model;
  4. use traits\model\SoftDelete;
  5. /**
  6. *公海设置
  7. */
  8. class Seastype extends Model
  9. {
  10. use SoftDelete;
  11. protected $name = 'qingdongams_seas_type';
  12. // 自动写入时间戳字段
  13. protected $autoWriteTimestamp = 'int';
  14. // 定义时间戳字段名
  15. protected $createTime = 'createtime';
  16. protected $updateTime = 'updatetime';
  17. protected $deleteTime = 'deletetime';
  18. }