12345678910111213141516171819 |
- <?php
- namespace app\admin\model;
- class SaleReturninfo extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'int',//
- 'returnCode' =>'varchar',//退货code
- 'orderCode' =>'varchar',//订单code
- 'wsm_code' =>'varchar',//退货仓库
- 'return_num' =>'int',//退货数量
- 'total_num' =>'int',//下单总数
- 'is_del' =>'int',//是否删除
- 'addtime' =>'datetime',//添加时间
- 'updatetime' =>'datetime',//更新时间
- ];
- }
|