| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 | 
							- package com.ruoyi.business.domain;
 
- import com.baomidou.mybatisplus.annotation.TableId;
 
- import com.baomidou.mybatisplus.annotation.TableName;
 
- import com.ruoyi.common.core.web.domain.BaseEntity;
 
- import lombok.Data;
 
- import lombok.EqualsAndHashCode;
 
- import java.io.Serial;
 
- import java.util.Date;
 
- /**
 
-  * 营运检验监督 bj_service_check
 
-  *
 
-  * @author libai
 
-  * @date 2025-10-29
 
-  */
 
- @Data
 
- @EqualsAndHashCode(callSuper = true)
 
- @TableName("bj_service_check")
 
- public class BjServiceCheck extends BaseEntity {
 
-     @Serial
 
-     private static final long serialVersionUID = 1L;
 
-     /**
 
-      * 营运检验监督ID
 
-      */
 
-     @TableId("service_check_id")
 
-     private Long serviceCheckId;
 
-     /**
 
-      * 船名
 
-      */
 
-     private String shipName;
 
-     /**
 
-      * 船舶识别号
 
-      */
 
-     private String shipId;
 
-     /**
 
-      * 船舶登记号
 
-      */
 
-     private String shipRegisterNumber;
 
-     /**
 
-      * 船籍港
 
-      */
 
-     private String regportName;
 
-     /**
 
-      * 检查日期
 
-      */
 
-     private Date checkDate;
 
-     /**
 
-      * 被监督机构
 
-      */
 
-     private String beMonitorOrganization;
 
-     /**
 
-      * 检查机构
 
-      */
 
-     private String checkOrganization;
 
-     /**
 
-      * 检查人员
 
-      */
 
-     private String checkPerson;
 
-     /**
 
-      * 状态
 
-      */
 
-     private String status;
 
-     /**
 
-      * 检查结论
 
-      */
 
-     private String checkResult;
 
-     /**
 
-      * 缺陷
 
-      */
 
-     private String defect;
 
-     /**
 
-      * 发布时间
 
-      */
 
-     private Date releaseDate;
 
-     /**
 
-      * 是否已发布  0:未发布 1:已发布
 
-      */
 
-     private String releaseFlag;
 
-     /**
 
-      * 不予通报  true  false
 
-      */
 
-     private String reportFlag;
 
-     /**
 
-      * 不予通报原因
 
-      */
 
-     private String reportReason;
 
-     /**
 
-      * 不予通报附件
 
-      */
 
-     private String reportFile;
 
-     /**
 
-      * 脱离日期
 
-      */
 
-     private String breakDate;
 
-     /**
 
-      * 脱离原因
 
-      */
 
-     private String breakReason;
 
-     /**
 
-      * 是否删除  0:未删除  1:已删除
 
-      */
 
-     private String delFlag;
 
- }
 
 
  |