interface.ts 1.1 KB

1234567891011121314151617181920212223242526272829
  1. // 查询机构库存(库存管理/当前库存)
  2. export interface Ermcp3AreaStock{
  3. brandname :string;//品牌名称
  4. curstock :number;//期末库存量(今日量)
  5. deliverygoodscode :string;//现货品种代码
  6. deliverygoodsid :number;//现货品种id
  7. deliverygoodsname :string;//现货品种名称
  8. enumdicname :string;//单位名称
  9. goodsunitid :number;//现货商品单位id
  10. oristock :number;//期初库存量(昨日量)
  11. spotgoodsbrandid :number;//现货品牌ID
  12. todaybuyinqty :number;//今日采购入库量
  13. todayproduceinqty :number;//今日生产入库量
  14. todayproduceoutqty :number;//今日生产出库量
  15. todayselloutqty :number;//今日销售出库量
  16. unitid :number;//单位id
  17. updatetime :string;//更新时间
  18. userid :number;//机构ID
  19. username :string;//机构名称
  20. warehousecode :string;//仓库代码
  21. warehouseinfoid :string;//仓库ID
  22. warehousename :string;//仓库名称
  23. warehousetype :number;//仓库类型 - 1 厂库 2 自有库 3 合作库
  24. wrstandardcode :string;//品类代码
  25. wrstandardid :string;//品类ID
  26. wrstandardname :string;//品类名称
  27. }