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
{
///
/// 巡检详细记录编号
///
public Guid C_RecordItemCode { get; set; }
///
/// 安检记录
///
public string C_SecurityContent { get; set; }
public string C_Remark { get; set; }
public string C_Status { get; set; }
///
/// 图片路径
///
public IList FilePaths { get; set; }
}
}