using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Ropin.Inspection.Model.ViewModel
{
    public class TispRecordItem : BaseViewModel
    {
        public Guid C_ID { get; set; }
        /// <summary>
        /// 巡检记录编号
        /// </summary>
        public Guid C_RecordCode { get; set; }
        /// <summary>
        /// 内容编号
        /// </summary>
        public Guid C_ContentCode { get; set; }
        /// <summary>
        /// 巡检点内容编号 待删除
        /// </summary>
        public Guid C_SpotContentCode { get; set; }
        public string C_InspectionContent { get; set; }
        public string C_Remark { get; set; }
        public char C_Status { 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; }
    }
}