BjBuildCheck.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. package com.ruoyi.business.domain;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import com.ruoyi.common.core.web.domain.BaseEntity;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. import java.io.Serial;
  8. import java.util.Date;
  9. /**
  10. * 建造检验监督 bj_build_check
  11. *
  12. * @author libai
  13. * @date 2025-10-29
  14. */
  15. @Data
  16. @EqualsAndHashCode(callSuper = true)
  17. @TableName("bj_build_check")
  18. public class BjBuildCheck extends BaseEntity {
  19. @Serial
  20. private static final long serialVersionUID = 1L;
  21. /**
  22. * 建造检验监督ID
  23. */
  24. @TableId("build_check_id")
  25. private String buildCheckId;
  26. /**
  27. * 船名
  28. */
  29. private String shipName;
  30. /**
  31. * 船厂
  32. */
  33. private String shipyard;
  34. /**
  35. * 船舶登记号
  36. */
  37. private String shipRegisterNumber;
  38. /**
  39. * 船舶检验机构
  40. */
  41. private String shipCheckOrganization;
  42. /**
  43. * 检查人员
  44. */
  45. private String checkPerson;
  46. /**
  47. * 检查日期
  48. */
  49. private Date checkDate;
  50. /**
  51. * 船舶种类
  52. */
  53. private String shipType;
  54. /**
  55. * 船长(米)
  56. */
  57. private String shipLength;
  58. /**
  59. * 型宽(米)
  60. */
  61. private String shipWidth;
  62. /**
  63. * 型深(米)
  64. */
  65. private String shipDepth;
  66. /**
  67. * 总吨
  68. */
  69. private String shipWeight;
  70. /**
  71. * 联系方式
  72. */
  73. private String shipConcat;
  74. /**
  75. * 状态
  76. */
  77. private String status;
  78. /**
  79. * 检查结论
  80. */
  81. private String checkResult;
  82. /**
  83. * 缺陷
  84. */
  85. private String defect;
  86. /**
  87. * 发布时间
  88. */
  89. private Date releaseDate;
  90. /**
  91. * 是否已发布 0:未发布 1:已发布
  92. */
  93. private String releaseFlag;
  94. /**
  95. * 不予通报 true false
  96. */
  97. private String reportFlag;
  98. /**
  99. * 不予通报原因
  100. */
  101. private String reportReason;
  102. /**
  103. * 不予通报附件
  104. */
  105. private String reportFile;
  106. /**
  107. * 脱离日期
  108. */
  109. private String breakDate;
  110. /**
  111. * 脱离原因
  112. */
  113. private String breakReason;
  114. /**
  115. * 是否删除 0:未删除 1:已删除
  116. */
  117. private String delFlag;
  118. }