zhubaomin
2025-04-11 a1744d0bf7f0ad8ac861d672cffd7c710dac4e7e
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
package com.dy.pipIrrGlobal.voIr;
 
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.Data;
 
/**
 * @author ZhuBaoMin
 * @date 2025-03-31 17:10
 * @LastEditTime 2025-03-31 17:10
 * @Description 轮灌组详情视图对象
 */
 
@Data
@JsonPropertyOrder({"groupCode", "defaultDuration", "intakes"})
public class VoGroupDetail {
    public static final long serialVersionUID = 202503311711001L;
 
    /**
     * 轮灌组编码
     */
    private String groupCode;
 
    /**
     * 默认灌溉时长
     */
    private Integer defaultDuration;
 
    /**
     * 取水口列表
     */
    private String intakes;
}