点巡检报表 设备维修复核
This commit is contained in:
@@ -53,6 +53,10 @@ namespace Tnb.EquipMgr
|
||||
/// 申请外修
|
||||
/// </summary>
|
||||
public const string TOBEOUTAPPLY = "12";
|
||||
/// <summary>
|
||||
/// 复核中
|
||||
/// </summary>
|
||||
public const string REPEATCHECKING = "13";
|
||||
|
||||
}
|
||||
}
|
||||
13
EquipMgr/Tnb.EquipMgr.Entities/Dto/EqpSpotReportOutput.cs
Normal file
13
EquipMgr/Tnb.EquipMgr.Entities/Dto/EqpSpotReportOutput.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Tnb.EquipMgr.Entities.Dto
|
||||
{
|
||||
public class RepairApplyRepeatInput
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string repeat_result { get; set; }
|
||||
public string repeat_descrip { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -163,5 +163,15 @@ public partial class EqpRepairApply : BaseEntity<string>
|
||||
/// 生产任务单号
|
||||
/// </summary>
|
||||
public string? mo_task_code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 复核结果
|
||||
/// </summary>
|
||||
public string repeat_result { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 复核描述
|
||||
/// </summary>
|
||||
public string repeat_descrip { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user