GoodsUnit.php 530 B

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