using System; using System.Collections.Generic; using System.Text; namespace WCS.Model.ApiModel.MatDetailCurrentInfo { public class GetMatDetailCurrentInfosRequest : PageQueryRequestBase { public int? LocationAreaId { get; set; } public string LocationCode { get; set; } public int? ShelfTypeId { get; set; } public string ShelfCode { get; set; } public string MatCode { get; set; } public string MatName { get; set; } /// /// 是否是客户端请求 /// public bool IsClient { get; set; } = false; } }