Files
wcs/WCS.Model/ApiModel/InStore/QueryByMatSnRequestSingle.cs
陶坤 e3d3726cbe 1
2024-05-15 18:49:11 +08:00

28 lines
853 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model
{
public class QueryByMatSnRequestSingle: RequestBase
{
public List<MatSnListDetail> MatSnList { get; set; }
public string ShelfCode { get; set; } = string.Empty;
public string IpAddress { get; set; } = string.Empty;
public bool IsSingleLightIn { get; set; } = false;
public class MatSnListDetail
{
public string MatSn { get; set; }
public string MatCode { get; set; }
public string MatName { get; set; }
public string MatSpec { get; set; }
public string MatBatch { get; set; }
public int MatQty { get; set; }
public string MatCustomer { get; set; }
public string MatSupplier { get; set; }
}
}
}