1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| package com.dy.pipIrrRemote.common.dto;
|
| import lombok.Data;
|
| /**
| * @author ZhuBaoMin
| * @date 2024-07-23 10:36
| * @LastEditTime 2024-07-23 10:36
| * @Description 自动关阀(定时关阀、定量关阀)传输对象
| */
|
| @Data
| public class AutomaticClose extends DtoBase {
| public static final long serialVersionUID = 202407231039001L;
|
| /**
| * 虚拟卡ID
| */
| private Long vcId;
|
| /**
| * 用水时长,拥有定时关阀
| */
| private Integer minutes;
|
| /**
| * 预用水量,拥有定量关阀
| */
| private Integer waterAmount;
| }
|
|