Files
wcs/WCS.Model/ApiModel/InStore/QueryByMatSnResponse.cs
hehaibing-1996 d40c3f253a 提交代码
2024-04-19 08:47:45 +08:00

33 lines
689 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}