Files
wcs/WCS.Model/ApiModel/InOutRecord/GetInOutRecordRequest.cs
hehaibing-1996 3c2cc27467 提交代码
2024-05-09 16:38:47 +08:00

36 lines
849 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.InOutRecord
{
public class GetInOutRecordRequest : PageQueryRequestBase
{
#region
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 string MatSupplier { get; set; }
public string MatCustomer { get; set; }
public DirectionEnum? Direction { get; set; }
#endregion
#region
public List<int> ShelfTypeId { get; set; }
public List<int> ShelfId { get; set; }
public int StoreId { get; set; }
public string StoreCode { get; set; }
#endregion
}
}