123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- 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> 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 string GroupInspectionContent { get; set; }
-
-
-
- public string GroupRemark { get; set; }
-
-
-
- public string UserName { 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<string> RectificationContent { get; set; }
-
-
-
- public IList<string> Implementation { get; set; }
- }
- }
|