管道基础大数据平台系统开发-【后端】-Server
13693261870
2024-03-15 bdd3b95a503393f8eb79279d0653f8f88dc8d992
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package com.lf.server.entity.ctrl;
 
/**
 * 统计实体类
 * @author WWW
 */
public class CountEntity {
    private Integer no;
 
    private String m1;
 
    private String m2;
 
    private String m3;
 
    private Long count;
 
    private Double sizes;
 
    private Double area;
 
    private Double len;
 
    public CountEntity() {
    }
 
    public Integer getNo() {
        return no;
    }
 
    public void setNo(Integer no) {
        this.no = no;
    }
 
    public String getM1() {
        return m1;
    }
 
    public void setM1(String m1) {
        this.m1 = m1;
    }
 
    public String getM2() {
        return m2;
    }
 
    public void setM2(String m2) {
        this.m2 = m2;
    }
 
    public String getM3() {
        return m3;
    }
 
    public void setM3(String m3) {
        this.m3 = m3;
    }
 
    public Long getCount() {
        return count;
    }
 
    public void setCount(Long count) {
        this.count = count;
    }
 
    public Double getSizes() {
        return sizes;
    }
 
    public void setSizes(Double sizes) {
        this.sizes = sizes;
    }
 
    public Double getArea() {
        return area;
    }
 
    public void setArea(Double area) {
        this.area = area;
    }
 
    public Double getLen() {
        return len;
    }
 
    public void setLen(Double len) {
        this.len = len;
    }
}