Files
wcs/WCS.Model/ApiModel/MatInventoryDetail/GetMatInventorySummaryRequest.cs
hehaibing-1996 aaf7c17562 提交代码
2024-04-23 08:31:37 +08:00

22 lines
460 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.MatInventoryDetail
{
public class GetMatInventorySummaryRequest
{
public string MatCode { get; set; }
public string MatName { get; set; }
public string MatSpec { get; set; }
public string MatBatch { get; set; }
public string MatSupplier { get; set; }
public string MatCustomer { get; set; }
}
}