| | |
| | | package com.dy.pipIrrRemote.monitor.mqttSd1.paramSet; |
| | | |
| | | import com.dy.pipIrrRemote.common.dto.Dto4MqttBase; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | |
| | | @EqualsAndHashCode(callSuper=true) |
| | | public class CdDto extends Dto4MqttBase { |
| | | public static final long serialVersionUID = 202506201656001L; |
| | | |
| | | // 搅拌设定时间 单位秒 |
| | | @NotNull(message = "搅拌设定时间不能为空") |
| | | public Integer stirDuration ; |
| | | |
| | | // 注肥设定时间 单位秒 |
| | | @NotNull(message = "注肥设定时间不能为空") |
| | | public Integer injectDuration ; |
| | | } |