1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.dy.pipIrrGlobal.voRm;
|
| import com.dy.common.po.BaseEntity;
| import lombok.Data;
|
| /**
| * @author ZhuBaoMin
| * @date 2024-06-07 9:03
| * @LastEditTime 2024-06-07 9:03
| * @Description 关阀所需参数,平台选择取水口关阀使用
| */
|
| @Data
| public class VoUnclosedParam implements BaseEntity {
| private static final long serialVersionUID = 202406070904001L;
|
| private String rtuAddr;
|
| private String orderNo;
|
| private String vcNum;
| }
|
|