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
30
31
32
33
34
35
36
37
38
39
40
package com.dy.pipIrrGlobal.voIr;
 
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author ZhuBaoMin
 * @date 2025-02-21 14:21
 * @LastEditTime 2025-02-21 14:21
 * @Description 灌溉次序视图对象,生成开阀计划使用,不传给前端
 */
 
@Data
@JsonPropertyOrder({ "scheduleId", "groupId", "startTime", "duration"})
public class VoIrrigateSchedule {
    private static final long serialVersionUID = 202502211423001L;
 
    /**
     * 灌溉次序ID
     */
    private Long scheduleId;
 
    /**
     * 轮灌组ID
     */
    private Long groupId;
 
    /**
     * 灌溉开始时间
     */
    private Date startTime;
 
    /**
     * 灌溉时长,分钟
     */
    private Integer duration;
 
}