CustomerEnterpriseDetail.php 460 B

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