OrderProduct.php 413 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\admin\model\unishop;
  3. use think\Model;
  4. class OrderProduct extends Model
  5. {
  6. //数据库
  7. protected $connection = 'database';
  8. // 表名
  9. protected $name = 'unishop_order_product';
  10. // 自动写入时间戳字段
  11. protected $autoWriteTimestamp = 'int';
  12. // 定义时间戳字段名
  13. protected $createTime = 'createtime';
  14. protected $updateTime = 'updatetime';
  15. }