12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- 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<string> FilePaths { get; set; }
- public IList<string> 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<TmtnDevOpsRecordCreateModel> 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<TmtnDevOpsRecordCreateModel> TmtnRecordItemList { get; set; }
-
- }
- }
|