| 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
 | | package com.dy.common.mw.protocol4Mqtt.pSdV1.comParam; |  |   |  | import lombok.AllArgsConstructor; |  | import lombok.Data; |  | import lombok.NoArgsConstructor; |  |   |  | /** |  |  * @Author: liurunyu |  |  * @Date: 2025/6/11 17:03 |  |  * @Description |  |  */ |  | @Data |  | @NoArgsConstructor |  | @AllArgsConstructor |  | public class ComSetParamVo { |  |     //设备编号 |  |     public Integer no ; |  |   |  |     // 搅拌设定时间 |  |     public Integer stirDuration ; |  |   |  |     // 注肥设定时间 |  |     public Integer injectDuration ; |  |   |  | } | 
 |