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