1234567891011121314151617181920212223242526 |
- <?php
- namespace app\admin\model;
- class AllotInfo extends Base
- {
- //设置字段信息
- protected $schema = [
- 'id' =>'bigint',//
- 'allot_code' =>'varchar',//调拨code
- 'good_type_code' =>'varchar',//商品属性code
- 'bnCode' =>'varchar',//商品bnCode
- 'good_name' =>'varchar',//商品名称
- 'origin_price' =>'decimal',//成本价
- 'allot_num' =>'int',//调拨数量
- 'usable_num' =>'int',//可用数量
- 'error_num' =>'int',//异常数量
- 'error_remark' =>'varchar',//异常备注
- 'stock_num' =>'int',//入库数量
- 'good_num' =>'int',//商品数量
- 'error_code' =>'varchar',//异常原因
- 'is_del' =>'int',//
- 'addtime' =>'datetime',//
- 'updatetime' =>'datetime',//
- ];
- }
|