namespace Tnb.EquipMgr.Entities.Dto
{
public class RepairApplyRegisterInput
{
public string? id { get; set; }
///
/// 故障ID
///
public string? fault_id { get; set; }
///
/// 是否完成
///
public string? is_complete { get; set; }
///
/// 完成时间
///
public DateTime? complete_time { get; set; }
///
/// 维修耗时
///
public int? repair_take_time { get; set; }
///
/// 是否停机
///
public int? is_halt { get; set; }
///
/// 停机时长
///
public int? halt_take_time { get; set; }
///
/// 维修描述
///
public string? repair_description { get; set; }
///
/// 维修图片
///
public string? repair_img { get; set; }
///
/// 是否外修
///
public int? is_out_apply { get; set; }
}
}