using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ropin.Inspection.Model { public class TmtnDevOpsCreateModel { public string C_Name { get; set; } public string C_SpotCode { get; set; } public string C_ExamineBy { get; set; } public string C_ExamineOn { get; set; } public string C_Remark { get; set; } } public class TmtnDevOpsRecordCreateModel { public string C_SpotDevOpsContentCode { get; set; } public string C_Record { get; set; } public string C_Remark { get; set; } public IList FilePaths { get; set; } public IList FileNames { get; set; } public SolidWaste DevOpsRecordSolidWaste { get; set; } } public class SolidWaste { public string NameSpecification { get; set; } //耗材数量-数量 public string SpecificationNumber { get; set; } //耗材数量-单位 public string SpecificationUnit { get; set; } //耗材重量-数量 public string SolidWasteNumber { get; set; } //耗材重量-单位 public string SolidWasteUnit { get; set; } //废弃物重量-数量 public string DropNumber { get;set; } //废弃物重量-单位 public string DropUnit { get; set; } } public class TmtnDevOpsRecordListCreateModel { public string C_SpotCode { get; set; } public string C_Name { get; set; } public string C_ExamineBy { get; set; } public string C_ExamineOn { get; set; } public string C_Remark { get; set; } public IEnumerable TmtnRecordItemList { get; set; } } public class TmtnDevOpsRecordListUpdataModel { public string C_DevOpsCode { get; set; } public string C_SpotCode { get; set; } public string C_Name { get; set; } public string C_ExamineBy { get; set; } public string C_ExamineOn { get; set; } public string C_Remark { get; set; } public string C_Status { get; set; } public IEnumerable TmtnRecordItemList { get; set; } } }