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; } }