ReturnInfo.php 533 B

123456789101112131415161718
  1. <?php
  2. namespace app\admin\model;
  3. class ReturnInfo extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'returnCode' =>'varchar',//退货编号
  9. 'type' =>'tinyint',//退货类型 1 售前退货2 售后退货
  10. 'orderCode' =>'varchar',//销售单编号
  11. 'bnCode' =>'varchar',//退货bn编号
  12. 'origin_price' =>'decimal',//
  13. 'num' =>'int',//退货数量
  14. 'addtime' =>'datetime',//新建时间
  15. ];
  16. }