using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ropin.Inspection.Model.ViewModel
{
public class FirePreventionWeekRecordViewModel : BaseViewModel
{
public Guid G_ID { get; set; }
///
/// 分组名称
///
public string C_Name { get; set; }
///
/// 检查情况
///
public string CheckSituation { get; set; }
///
/// 责令当场整改情况
///
public string Result { get; set; }
}
public class FireFightingFacilitiesWeekRecordViewModel : BaseViewModel
{
///
/// 巡查项目
///
public string C_PatrolItem { get; set; }
public IEnumerable FireFightingFacilitiesItem { get; set; }
}
public class FireFightingFacilitiesItem
{
public Guid G_ID { get; set; }
///
/// 分组名称
///
public string C_Name { get; set; }
///
/// 检查情况
///
public string CheckSituation { get; set; }
///
/// 责令当场整改情况
///
public string Result { get; set; }
///
/// 巡检项目
///
public string C_PatrolItem { get; set; }
}
public class FireInspectionRecordViewModel
{
//public Guid G_ID { get; set; }
///
/// 检查情况
///
public string GroupInspectionContent { get; set; }
///
/// 责令当场整改情况
///
public string GroupRemark { get; set; }
///
/// 巡检人员
///
public string UserName { get; set; }
///
/// 巡检时间
///
//public DateTime D_CreateOn { get; set; }
public string CreateDate { get; set; }
public string GroupStatus { get; set; }
///
/// 防火防门
///
public string Fhm { get; set; }
public string FhmZt { get; set; }
///
/// 标识标志
///
public string Bzbs { get; set; }
public string BzbsZt { get; set; }
///
/// 重点部位
///
public string Zdbw { get; set; }
public string ZdbwZt { get; set; }
///
/// 水电违章
///
public string Sdwz { get; set; }
public string SdwzZt { get; set; }
///
/// 疏散通道
///
public string Sstd { get; set; }
public string SstdZt { get; set; }
///
/// 消防器材
///
public string Xfqc { get; set; }
public string XfqcZt { get; set; }
///
/// 安全出口
///
public string Aqck { get; set; }
public string AqckZt { get; set; }
}
public class HiddenDangerRectificationAcceptanceFormViewModel
{
///
/// 整改内容
///
public IList RectificationContent { get; set; }
///
/// 落实情况
///
public IList Implementation { get; set; }
}
}