PersonOrder.php 550 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace addons\qingdongams\model;
  3. use app\common\library\StaffAuth;
  4. use think\Model;
  5. /**
  6. *跟进记录
  7. */
  8. class PersonOrder extends Model
  9. {
  10. protected $name = 'qingdongams_person_order';
  11. // 开启自动写入时间戳字段
  12. protected $autoWriteTimestamp = 'int';
  13. // 定义时间戳字段名
  14. protected $createTime = 'createtime';
  15. protected $updateTime = 'updatetime';
  16. public function getCreatetimeAttr($value)
  17. {
  18. return date('Y-m-d H:i:s', $value);
  19. }
  20. }