SaleReturninfo.php 563 B

12345678910111213141516171819
  1. <?php
  2. namespace app\admin\model;
  3. class SaleReturninfo extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'int',//
  8. 'returnCode' =>'varchar',//退货code
  9. 'orderCode' =>'varchar',//订单code
  10. 'wsm_code' =>'varchar',//退货仓库
  11. 'return_num' =>'int',//退货数量
  12. 'total_num' =>'int',//下单总数
  13. 'is_del' =>'int',//是否删除
  14. 'addtime' =>'datetime',//添加时间
  15. 'updatetime' =>'datetime',//更新时间
  16. ];
  17. }