Order.php 395 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\common\model\pig;
  3. use think\Cache;
  4. use think\Model;
  5. class Order extends Model
  6. {
  7. // 表名
  8. protected $name = 'p_order';
  9. // 自动写入时间戳字段
  10. protected $autoWriteTimestamp = 'int';
  11. // 定义时间戳字段名
  12. protected $createTime = 'createtime';
  13. protected $updateTime = 'updatetime';
  14. protected $deleteTime = 'deletetime';
  15. }