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