DiagramDiagnoseStandardPO.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package com.hb.proj.model;
  2. import java.util.Date;
  3. import jakarta.validation.constraints.NotBlank;
  4. import lombok.Data;
  5. @Data
  6. public class DiagramDiagnoseStandardPO {
  7. private String diagnoseId;
  8. /**
  9. * 标准图形文件id
  10. */
  11. private String fileId;
  12. /**
  13. * 充满系数(%)
  14. */
  15. private Double fillCoe;
  16. /**
  17. * 漏失系数
  18. */
  19. private Double leakCoe;
  20. /**
  21. * 气体影响程度 如:严重、一般
  22. */
  23. private String gasEffect;
  24. /**
  25. * 排出漏失系数
  26. */
  27. private Double dischargeLeakCoe;
  28. /**
  29. * 吸入漏失系数
  30. */
  31. private Double inhaleLeakCoe;
  32. /**
  33. * 油管漏失系数
  34. */
  35. private Double pipeLeakCoe;
  36. /**
  37. * 出砂程度 如:严重、一般
  38. */
  39. private String sandDegree;
  40. /**
  41. * 结蜡程度
  42. */
  43. private String waxDegree;
  44. /**
  45. * 活塞脱出程度
  46. */
  47. private String pistonSlipDegree;
  48. /**
  49. * 下行碰泵程度
  50. */
  51. private String pumpDownBump;
  52. /**
  53. * 诊断结论
  54. */
  55. @NotBlank(message="诊断结论不能为空")
  56. private String conclusion;
  57. /**
  58. * 建议措施
  59. */
  60. private String advise;
  61. private Date createTime;
  62. private Date modifyTime;
  63. private String createBy;
  64. private String modifyBy;
  65. private Boolean delIf;
  66. }