Files
wcs/WCS.Model/ApiModel/InOutRecord/GetInOutRecordRequest.cs
hehaibing-1996 adb0367a83 1.解决TCP添加失败问题
2.所有搜索记录倒叙排
3.优化:出入记录、库存记录增加货架类型分类查询
4.权限
5.优化下载app二维码
2024-07-02 09:05:21 +08:00

36 lines
843 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 int ShelfTypeId { get; set; }
public List<int> ShelfId { get; set; }
public int StoreId { get; set; }
public string StoreCode { get; set; }
#endregion
}
}