1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace addons\unishop\model;
- use addons\unishop\extend\Hashids;
- use think\Model;
- class OrderRefundProduct extends Model
- {
-
- protected $name = 'unishop_order_refund_product';
-
- protected $autoWriteTimestamp = 'int';
-
- protected $createTime = 'createtime';
- protected $updateTime = false;
-
- protected $hidden = [
- 'order_id',
- ];
- }
|