25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

20 satır
389 B

  1. <?php
  2. namespace app\admin\model\unishop;
  3. use think\Model;
  4. /**
  5. * 分类模型
  6. */
  7. class OrderRefundProduct extends Model
  8. {
  9. // 表名
  10. protected $name = 'unishop_order_refund_product';
  11. // 开启自动写入时间戳字段
  12. protected $autoWriteTimestamp = 'int';
  13. // 定义时间戳字段名
  14. protected $createTime = 'createtime';
  15. protected $updateTime = false;
  16. }