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

namespace Ropin.Inspection.Model.ViewModel
{
    public class TsecRecordItemCreateViewModel : BaseViewModel
    {
        /// <summary>
        /// 巡检详细记录编号
        /// </summary>
        public Guid C_RecordItemCode { get; set; }
        /// <summary>
        /// 安检记录
        /// </summary>
        public string C_SecurityContent { get; set; }
        public string C_Remark { get; set; }
        public string C_Status { get; set; }
        /// <summary>
        /// 图片路径
        /// </summary>
        public IList<string> FilePaths { get; set; }
    }
}