|  |  | 
 |  |  | /** | 
 |  |  |  * @author ZhuBaoMin | 
 |  |  |  * @date 2024-01-05 9:04 | 
 |  |  |  * @LastEditTime 2024-01-05 9:04 | 
 |  |  |  * @LastEditTime 2024-04-01 9:04 wuzeyu | 
 |  |  |  * @Description | 
 |  |  |  */ | 
 |  |  |  | 
 |  |  | 
 |  |  | @AllArgsConstructor | 
 |  |  | @Schema(name = "流量计实体") | 
 |  |  | public class PrFlowmeter implements BaseEntity { | 
 |  |  |     public static final long serialVersionUID = 1L; | 
 |  |  |     public static final long serialVersionUID = 202401151517003L; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |     * 主键 | 
 |  |  | 
 |  |  |     @TableId(type = IdType.INPUT) | 
 |  |  |     @Schema(description = "实体id", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
 |  |  |     private Long id; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |      * 外键 监测站ID | 
 |  |  |      */ | 
 |  |  |     @Schema(description = "监测站ID", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
 |  |  |     @Length(message = "监测站ID不大于{max}字,不小于{min}字", min = 1, max = 25) | 
 |  |  |     private String monitoringId; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |     * 流量计编号 | 
 |  |  | 
 |  |  |     * 在线状态;1-在线,2-离线 | 
 |  |  |     */ | 
 |  |  |     @Schema(description = "在线状态", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
 |  |  |     private Byte onlinestate; | 
 |  |  |     private Byte onlineState; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |     * 最近上报时间 | 
 |  |  |     */ | 
 |  |  |     @Schema(description = "最近上报时间", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
 |  |  |     private Date reporttime; | 
 |  |  |     private Date reportTime; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |     * 添加方式;1-系统自动,2-手动 | 
 |  |  |     */ | 
 |  |  |     @Schema(description = "添加方式", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
 |  |  |     private Byte addways; | 
 |  |  |     private Byte addWays; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |     * 操作人编号 | 
 |  |  |     * 操作人ID | 
 |  |  |     */ | 
 |  |  |     @Schema(description = "操作人编号", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
 |  |  |     @Schema(description = "操作人ID", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
 |  |  |     private Long operator; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |     * 操作时间 | 
 |  |  |     */ | 
 |  |  |     @Schema(description = "操作时间", requiredMode = Schema.RequiredMode.NOT_REQUIRED) | 
 |  |  |     private Date operatedt; | 
 |  |  |     private Date operateDt; | 
 |  |  |  | 
 |  |  |     /** | 
 |  |  |     * 备注信息 |