You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
425 B

  1. <?php
  2. namespace addons\unishop\model;
  3. use think\Model;
  4. /**
  5. * 收货地址模型
  6. * Class Favorite
  7. * @package addons\unishop\model
  8. */
  9. class Area extends Model
  10. {
  11. // 表名
  12. protected $name = 'unishop_area';
  13. // 开启自动写入时间戳字段
  14. protected $autoWriteTimestamp = 'int';
  15. // 定义时间戳字段名
  16. protected $createTime = 'createtime';
  17. protected $updateTime = 'updatetime';
  18. }