Files
wcs/WCS.Model/ApiModel/MatDetailHistoryInfo/GetMatDetailHistoryInfosRequest.cs
2025-02-24 19:39:57 +08:00

20 lines
528 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.MatDetailHistoryInfo
{
public class GetMatDetailHistoryInfosRequest : PageQueryRequestBase
{
public RecordTypeEnum? RecordType { get; set; } = null;
public FunctionTypeEnum? FunctionType { get; set; } = null;
public string ShelfCode { get; set; } = string.Empty;
public string MatCode { get; set; } = string.Empty ;
public string MatName { get; set; } = string.Empty;
}
}