using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model.ViewModel { public class TispRecordItemWithImageViewModel { private string inspectionContent; private List inspectionContentoptions; public Guid C_ID { get; set; } /// /// 巡检记录编号 /// public Guid C_RecordCode { get; set; } /// /// 内容编号 /// public Guid C_ContentCode { get; set; } /// /// 巡检点内容编号 待删除 /// public Guid C_SpotContentCode { get; set; } //public string C_InspectionContent { get; set; } public string C_InspectionContent { get { return this.inspectionContent; } set { this.inspectionContent = value; } } public string C_Remark { get; set; } public string C_Status { get; set; } /// /// 内容报警等级 /// public string C_AlarmLevel { get; set; } /// /// 内容名称 /// public string C_Name { get; set; } public Guid C_RecordImageId { get; set; } public string C_ImageURL { get; set; } public string RecordImageStatus { get; set; } /// /// 巡检点名称 /// public string SpotName { get; set; } /// /// 巡检点编号 /// public string SpotNumber { get; set; } /// /// 区域 /// public string SpotAreaName { get; set; } /// /// 上报人员姓名 /// public string ReportUserName { get; set; } /// /// 上报人员电话 /// public string ReportUserMobile { get; set; } /// /// 恢复人员姓名 /// public string RecordUserName { get; set; } /// /// 巡检点位置 /// public string SpotPosition { get; set; } public Guid C_CreateBy { get; set; } public DateTime D_CreateOn { get; set; } public Guid C_LastUpdatedBy { get; set; } public DateTime D_LastUpdatedOn { get; set; } /// /// 安检状态 /// public string SecurityStatus { get; set; } } }