namespace Tnb.BasicData.Entities.Dto
{
public class MaterialQueryInput
{
///
/// 查询条件
///
public string queryJson { get; set; } = string.Empty;
///
/// 物料类型
///
public string types { get; set; } = string.Empty;
///
/// 当前页码:pageIndex.
///
public virtual int currentPage { get; set; } = 1;
///
/// 每页行数.
///
public virtual int pageSize { get; set; } = 50;
}
}