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 ;
|
|
}
|