WorkorderVisit.php 496 B

12345678910111213141516171819202122
  1. <?php
  2. namespace addons\qingdongams\model;
  3. use think\Model;
  4. use traits\model\SoftDelete;
  5. /**
  6. *工单回访表
  7. */
  8. class WorkorderVisit Extends Model {
  9. use SoftDelete;
  10. protected $name = 'qingdongams_workorder_visit';
  11. // 开启自动写入时间戳字段
  12. protected $autoWriteTimestamp = 'int';
  13. // 定义时间戳字段名
  14. protected $createTime = 'createtime';
  15. protected $updateTime = 'updatetime';
  16. protected $deleteTime = 'deletetime';
  17. }