CustomerEnterprise.php 443 B

12345678910111213141516171819202122
  1. <?php
  2. namespace addons\qingdongams\model;
  3. use think\Model;
  4. /**
  5. * 工商信息查询记录
  6. */
  7. class CustomerEnterprise Extends Model
  8. {
  9. // 表名,不含前缀
  10. protected $name = 'qingdongams_customer_enterprise';
  11. // 开启自动写入时间戳字段
  12. protected $autoWriteTimestamp = 'int';
  13. // 定义时间戳字段名
  14. protected $createTime = 'createtime';
  15. protected $updateTime = false;
  16. }