using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ropin.Inspection.Model.ViewModel
{
public class FirePreventionWeekRecordDto
{
public Guid G_ID { get; set; }
///
/// 分组名称
///
public string C_Name { get; set; }
///
/// 巡检点编号
///
public string C_Number { get; set; }
public string SpotName { get; set; }
public string C_InspectionContent { get; set; }
///
/// 状态
///
public string C_Status { get; set; }
}
public class FireFightingFacilitiesWeekRecordDto
{
public Guid G_ID { get; set; }
///
/// 分组名称
///
public string C_Name { get; set; }
///
/// 巡检点编号
///
public string C_Number { get; set; }
///
/// 巡检点名称
///
public string SpotName { get; set; }
///
/// 巡检内容
///
public string C_InspectionContent { get; set; }
///
/// 状态
///
public string C_Status { get; set; }
///
/// 巡查项目
///
public string C_PatrolItem { get; set; }
///
/// 巡检备注
///
public string C_Remark { get; set; }
public Guid ContentGroupItemCode { get; set; }
}
public class FireInspectionRecordDto
{
public Guid G_ID { get; set; }
///
/// 分组名称
///
public string C_Name { get; set; }
///
/// 巡检点编号
///
public string C_Number { get; set; }
///
/// 巡检点名称
///
public string SpotName { get; set; }
///
/// 巡检内容
///
public string C_InspectionContent { get; set; }
///
/// 状态
///
public string C_Status { get; set; }
///
/// 巡查项目
///
public string C_PatrolItem { get; set; }
///
/// 巡检备注
///
public string C_Remark { get; set; }
///
/// 巡检人员
///
public string UserName { get; set; }
///
/// 巡检时间
///
public DateTime D_CreateOn { get; set; }
}
public class HiddenDangerRectificationAcceptanceFormDto
{
public Guid G_ID { get; set; }
///
/// 分组名称
///
public string C_Name { get; set; }
///
/// 巡检点编号
///
public string C_Number { get; set; }
///
/// 巡检点名称
///
public string SpotName { get; set; }
///
/// 巡检内容
///
public string C_InspectionContent { get; set; }
///
/// 状态
///
public string C_Status { get; set; }
///
/// 巡查项目
///
public string C_PatrolItem { get; set; }
///
/// 异常情况
///
public string AbnormalContent { get; set; }
///
/// 巡检备注
///
public string C_Remark { get; set; }
///
/// 巡检人员
///
public string UserName { get; set; }
///
/// 巡检时间
///
public DateTime D_CreateOn { get; set; }
}
}