using System.Text.Json.Serialization;
namespace MES.Service.Dto.service
{
public class WhqohList
{
///
/// 物料ID
///
[JsonPropertyName("ItemId")]
public string ItemId { get; set; }
/////
///// 仓库ID
/////
//[JsonPropertyName("WhId")]
//public string WhId { get; set; }
/////
///// 项目
/////
//[JsonPropertyName("Project")]
//public string Project { get; set; }
/////
///// 批号
/////
//[JsonPropertyName("LotCode")]
//public string LotCode { get; set; }
}
}