点巡检报表 设备维修复核

This commit is contained in:
2024-08-30 12:01:57 +08:00
parent 02a79e3d59
commit a2514a1354
14 changed files with 163 additions and 23 deletions

View File

@@ -0,0 +1,13 @@
namespace Tnb.EquipMgr.Entities.Dto
{
public class EqpSpotReportOutput
{
public string id { get; set; }
public string code { get; set; }
public string name { get; set; }
public string workshop_name { get; set; }
public string month { get; set; }
public int execute_num { get; set; }
public int unqualified_num { get; set; }
}
}