24 lines
624 B
C#
24 lines
624 B
C#
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; }
|
|
/// <summary>
|
|
/// 是否是客户端请求
|
|
/// </summary>
|
|
public bool IsClient { get; set; } = false;
|
|
}
|
|
}
|