维修管理
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
namespace Tnb.EquipMgr.Entities.Dto
|
||||
{
|
||||
public class RepairApplyRegisterInput
|
||||
{
|
||||
public string id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 故障ID
|
||||
/// </summary>
|
||||
public string fault_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否完成
|
||||
/// </summary>
|
||||
public string? is_complete { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 完成时间
|
||||
/// </summary>
|
||||
public DateTime? complete_time { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 维修耗时
|
||||
/// </summary>
|
||||
public string? repair_take_time { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否停机
|
||||
/// </summary>
|
||||
public int? is_halt { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 停机时长
|
||||
/// </summary>
|
||||
public string? halt_take_time { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 维修描述
|
||||
/// </summary>
|
||||
public string? repair_description { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 附件
|
||||
/// </summary>
|
||||
public string? attachment { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否外修
|
||||
/// </summary>
|
||||
public int? is_out_apply { get; set; }
|
||||
}
|
||||
}
|
||||
17
EquipMgr/Tnb.EquipMgr.Entities/Dto/RepairDelayInput.cs
Normal file
17
EquipMgr/Tnb.EquipMgr.Entities/Dto/RepairDelayInput.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace Tnb.EquipMgr.Entities.Dto
|
||||
{
|
||||
public class RepairDelayInput
|
||||
{
|
||||
public string repair_apply_id { get; set; }
|
||||
|
||||
public string equip_id { get; set; }
|
||||
|
||||
public string repair_request_sender_id { get; set; }
|
||||
|
||||
public string repair_sender_id { get; set; }
|
||||
|
||||
public DateTime expected_time { get; set; }
|
||||
|
||||
public string delay_reason { get; set; }
|
||||
}
|
||||
}
|
||||
15
EquipMgr/Tnb.EquipMgr.Entities/Dto/RepairOutApplyInput.cs
Normal file
15
EquipMgr/Tnb.EquipMgr.Entities/Dto/RepairOutApplyInput.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace Tnb.EquipMgr.Entities.Dto
|
||||
{
|
||||
public class RepairOutApplyInput
|
||||
{
|
||||
public string id { get; set; }
|
||||
public string repair_apply_id { get; set; }
|
||||
public string equip_id { get; set; }
|
||||
public string? supplier_id { get; set; }
|
||||
public decimal? estimated_cost { get; set; }
|
||||
public string? construction_period_requirement { get; set; }
|
||||
public string out_apply_reason { get; set; }
|
||||
public string? remark { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user