11
啊鑫
2025-07-15 5dc3cc86f5835369cd830f2a83318b9a8d69cf69
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace MES.Service.Dto.webApi.RealTimeInventory;
 
// 库存查询请求模型
public class InventoryParamModel
{
    public string fstockorgnumbers { get; set; }
    public string fmaterialnumbers { get; set; }
    public string fstocknumbers { get; set; }
    public string flotnumbers { get; set; }
    public bool isshowstockloc { get; set; }
    public bool isshowauxprop { get; set; }
    public int pageindex { get; set; }
    public int pagerows { get; set; }
}