工单完成情况汇总

This commit is contained in:
2023-09-21 15:45:03 +08:00
parent 84d65644c7
commit 1d9e74b45f
5 changed files with 120 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
{
public class PrdMoStatisticsInput
{
public string mo_status { get; set; }
/// <summary>
/// 页码.
/// </summary>
public int currentPage { get; set; }
/// <summary>
/// 页容量.
/// </summary>
public int pageSize { get; set; }
}
}