using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model.ViewModel { public class TispRecordItemCreateViewModel : BaseViewModel { /// /// 巡检记录编号 /// public Guid C_RecordCode { get; set; } /// /// 内容编号 /// public Guid C_ContentCode { get; set; } /// /// 巡检记录 /// public string C_InspectionContent { get; set; } public string C_Remark { get; set; } public string C_Status { get; set; } /// /// 图片文件 /// //public IList Files { get; set; } /// /// 图片路径 /// public IList FilePaths { get; set; } } }