Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 

23 rindas
413 B

  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. }