28 lines
853 B
C#
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; }
|
|
}
|
|
}
|
|
}
|