21 lines
521 B
C#
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; }
|
|
}
|
|
} |