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

37 lines
777 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WCS.Model.ApiModel.MatBaseInfo;
namespace WCS.Model
{
public class QueryByMatSnResponse : ResponseBase
{
public MatInfoResponse Data { get; set; }
}
public class MatInfoResponse
{
public string materialBar { get; set; }
public string materialCode { get; set; }
public string materialName { get; set; }
public string materialSpec { get; set; }
public double materialQty { get; set; }
public string batchNo { get; set; }
public string supplier { get; set; }
public string customer { get; set; }
public string InstoreUser { get; set; }
}
}