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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.dy.pipIrrGlobal.voLargeScreen;
 
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.Data;
 
/**
 * @Author: liurunyu
 * @Date: 2025/2/6 10:40
 * @Description
 */
 
@Data
@JsonPropertyOrder({"totalCountOfTown",
        "totalCountOfVillage",
        "totalCountOfBlock",
        "totalCountOfDivide",
        "totalCountOfIntake",
        "totalCountOfIntakeWithController",
        "totalCountOfIntakeWithoutController",
        "totalCountOfController",
        "totalCountOfControllerTramp"
        })
public class VoBaseInfo {
 
    private static final long serialVersionUID = 202502060948001L;
 
    /**
     * 乡镇总数
     */
    public Integer totalCountOfTown ;
 
    /**
     * 行政村总数
     */
    public Integer totalCountOfVillage ;
    /**
     * 片区总数
     */
    public Integer totalCountOfBlock ;
    /**
     * 分水房总数
     */
    public Integer totalCountOfDivide ;
    /**
     * 取水口总数
     */
    public Integer totalCountOfIntake ;
    /**
     * 已绑定控制器的取水口总数
     */
    public Integer totalCountOfIntakeWithController ;
    /**
     * 未绑定控制器的取水口总数
     */
    public Integer totalCountOfIntakeWithoutController ;
    /**
     * 阀控器总数
     */
    public Integer totalCountOfController ;
    /**
     * 流浪阀控器总数
     */
    public Integer totalCountOfControllerTramp ;
 
}