zhubaomin
昨天 70f61b0638e32274d0e5f9b972ce2a18f139f1b4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.dy.common.mw.protocol4Mqtt.pSdV1.comParam;
 
import com.alibaba.fastjson2.annotation.JSONField;
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 stirDuration ;
 
    // 注肥设定时间
    public Integer injectDuration ;
 
}