正向追溯接口

This commit is contained in:
2023-08-18 17:13:06 +08:00
parent aa8828f551
commit 027331c617
3 changed files with 166 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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? batch { get; set; }
}
}