AllotInfo.php 896 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace app\admin\model;
  3. class AllotInfo extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'bigint',//
  8. 'allot_code' =>'varchar',//调拨code
  9. 'good_type_code' =>'varchar',//商品属性code
  10. 'bnCode' =>'varchar',//商品bnCode
  11. 'good_name' =>'varchar',//商品名称
  12. 'origin_price' =>'decimal',//成本价
  13. 'allot_num' =>'int',//调拨数量
  14. 'usable_num' =>'int',//可用数量
  15. 'error_num' =>'int',//异常数量
  16. 'error_remark' =>'varchar',//异常备注
  17. 'stock_num' =>'int',//入库数量
  18. 'good_num' =>'int',//商品数量
  19. 'error_code' =>'varchar',//异常原因
  20. 'is_del' =>'int',//
  21. 'addtime' =>'datetime',//
  22. 'updatetime' =>'datetime',//
  23. ];
  24. }