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
| package com.dy.pipIrrWechat.command.dto;
|
| import lombok.Data;
|
| /**
| * @author ZhuBaoMin
| * @date 2024-07-23 10:55
| * @LastEditTime 2024-07-23 10:55
| * @Description
| */
| @Data
| public class AutomaticClose extends DtoBase {
| public static final long serialVersionUID = 202407231056001L;
|
| /**
| * 虚拟卡ID
| */
| private Long vcId;
|
| /**
| * 用水时长,拥有定时关阀
| */
| private Integer minutes;
|
| /**
| * 预用水量,拥有定量关阀
| */
| private Integer waterAmount;
| }
|
|