SaleInfo.php 769 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\admin\model;
  3. class SaleInfo extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'orderCode' =>'varchar',//订单号
  9. 'bnCode' =>'varchar',//bn编号
  10. 'stockid' =>'bigint',//库存编号id
  11. 'num' =>'int',//下单数量
  12. 'send_num' =>'int',//发货数量
  13. 'th_num' =>'int',//退货数量
  14. 'origin_price' =>'decimal',//采购成本价
  15. 'is_change_outbn' =>'tinyint',//是否bn迁移到发货工单上1未迁移 2部分迁移 3 已迁移
  16. 'change_num' =>'int',//迁移数量
  17. 'addtime' =>'datetime',//新建时间
  18. 'updatetime' =>'datetime',//更新时间
  19. ];
  20. }