Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/PrdMoFromQueryInput.cs
2023-08-23 17:35:18 +08:00

21 lines
521 B
C#

namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class PrdMoFromQueryInput
{
/// <summary>
/// 当前页码:pageIndex.
/// </summary>
public int currentPage { get; set; } = 1;
/// <summary>
/// 每页行数.
/// </summary>
public int pageSize { get; set; } = 50;
public string? mo_code { get; set; }
public string? mo_task_code { get; set; }
public string? barcode { get; set; }
}
}