TmtnDevOpsRecordCreateModel.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Ropin.Inspection.Model
  7. {
  8. public class TmtnDevOpsCreateModel
  9. {
  10. public string C_Name { get; set; }
  11. public string C_SpotCode { get; set; }
  12. public string C_ExamineBy { get; set; }
  13. public string C_ExamineOn { get; set; }
  14. public string C_Remark { get; set; }
  15. }
  16. public class TmtnDevOpsRecordCreateModel
  17. {
  18. public string C_SpotDevOpsContentCode { get; set; }
  19. public string C_Record { get; set; }
  20. public string C_Remark { get; set; }
  21. public IList<string> FilePaths { get; set; }
  22. public IList<string> FileNames { get; set; }
  23. public SolidWaste DevOpsRecordSolidWaste { get; set; }
  24. }
  25. public class SolidWaste
  26. {
  27. public string NameSpecification { get; set; }
  28. //耗材数量-数量
  29. public string SpecificationNumber { get; set; }
  30. //耗材数量-单位
  31. public string SpecificationUnit { get; set; }
  32. //耗材重量-数量
  33. public string SolidWasteNumber { get; set; }
  34. //耗材重量-单位
  35. public string SolidWasteUnit { get; set; }
  36. //废弃物重量-数量
  37. public string DropNumber { get;set; }
  38. //废弃物重量-单位
  39. public string DropUnit { get; set; }
  40. }
  41. public class TmtnDevOpsRecordListCreateModel
  42. {
  43. public string C_SpotCode { get; set; }
  44. public string C_Name { get; set; }
  45. public string C_ExamineBy { get; set; }
  46. public string C_ExamineOn { get; set; }
  47. public string C_Remark { get; set; }
  48. public IEnumerable<TmtnDevOpsRecordCreateModel> TmtnRecordItemList { get; set; }
  49. }
  50. public class TmtnDevOpsRecordListUpdataModel
  51. {
  52. public string C_DevOpsCode { get; set; }
  53. public string C_SpotCode { get; set; }
  54. public string C_Name { get; set; }
  55. public string C_ExamineBy { get; set; }
  56. public string C_ExamineOn { get; set; }
  57. public string C_Remark { get; set; }
  58. public string C_Status { get; set; }
  59. public IEnumerable<TmtnDevOpsRecordCreateModel> TmtnRecordItemList { get; set; }
  60. }
  61. }