生产工单查询优化

This commit is contained in:
quowingwang
2025-12-18 14:35:12 +08:00
parent 311779e473
commit 45bfff43e1
5 changed files with 94 additions and 4 deletions

View File

@@ -146,4 +146,21 @@ namespace ZR.Model.DTO.MES.pro
/// </summary>
public DateTime UpdatedTime { get; set; }
}
public class ProWorkorderV2Dto_stateCount
{
public int total { get; set; } = 0;
//正常
public int state0 { get; set; }
//物料不存在
public int state1 { get; set; }
//毛坯号异常
public int state2 { get; set; }
//颜色异常
public int state3 { get; set; }
//规格异常
public int state4 { get; set; }
//物料不包含此描述
public int state5 { get; set; }
}
}