| New file | 
|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrGlobal.voRm; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.dy.common.po.BaseEntity; | 
|---|
|  |  |  | import com.fasterxml.jackson.annotation.JsonPropertyOrder; | 
|---|
|  |  |  | import lombok.Data; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @author ZhuBaoMin | 
|---|
|  |  |  | * @date 2024-11-13 15:44 | 
|---|
|  |  |  | * @LastEditTime 2024-11-13 15:44 | 
|---|
|  |  |  | * @Description RTU地址及虚拟卡编号视图对象,获取未关阀记录使用 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Data | 
|---|
|  |  |  | @JsonPropertyOrder({"rtuAddr", "vcNum"}) | 
|---|
|  |  |  | public class VoRtuAndVc implements BaseEntity { | 
|---|
|  |  |  | private static final long serialVersionUID = 202411131548001L; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 阀控器地址 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private String rtuAddr; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 虚拟卡编号 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | private String vcNum; | 
|---|
|  |  |  | } | 
|---|