BjServiceCheck.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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_service_check
  11. *
  12. * @author libai
  13. * @date 2025-10-29
  14. */
  15. @Data
  16. @EqualsAndHashCode(callSuper = true)
  17. @TableName("bj_service_check")
  18. public class BjServiceCheck extends BaseEntity {
  19. @Serial
  20. private static final long serialVersionUID = 1L;
  21. /**
  22. * 营运检验监督ID
  23. */
  24. @TableId("service_check_id")
  25. private Long serviceCheckId;
  26. /**
  27. * 船名
  28. */
  29. private String shipName;
  30. /**
  31. * 船舶识别号
  32. */
  33. private String shipId;
  34. /**
  35. * 船舶登记号
  36. */
  37. private String shipRegisterNumber;
  38. /**
  39. * 船籍港
  40. */
  41. private String regportName;
  42. /**
  43. * 检查日期
  44. */
  45. private Date checkDate;
  46. /**
  47. * 被监督机构
  48. */
  49. private String beMonitorOrganization;
  50. /**
  51. * 检查机构
  52. */
  53. private String checkOrganization;
  54. /**
  55. * 检查人员
  56. */
  57. private String checkPerson;
  58. /**
  59. * 状态
  60. */
  61. private String status;
  62. /**
  63. * 检查结论
  64. */
  65. private String checkResult;
  66. /**
  67. * 缺陷
  68. */
  69. private String defect;
  70. /**
  71. * 发布时间
  72. */
  73. private Date releaseDate;
  74. /**
  75. * 是否已发布 0:未发布 1:已发布
  76. */
  77. private String releaseFlag;
  78. /**
  79. * 不予通报 true false
  80. */
  81. private String reportFlag;
  82. /**
  83. * 不予通报原因
  84. */
  85. private String reportReason;
  86. /**
  87. * 不予通报附件
  88. */
  89. private String reportFile;
  90. /**
  91. * 脱离日期
  92. */
  93. private String breakDate;
  94. /**
  95. * 脱离原因
  96. */
  97. private String breakReason;
  98. /**
  99. * 是否删除 0:未删除 1:已删除
  100. */
  101. private String delFlag;
  102. }