3
13693261870
2022-09-16 63ba114e70e380442fcbed4a5157ee52c9491216
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
package com.landtool.lanbase.modules.log.entity;
 
import java.io.Serializable;
import java.sql.Timestamp;
 
public class LogKettleStepcountJoinYear implements Serializable {
 
    private Integer year;
    private Integer suminput;
    private Integer sumoutput;
 
    public Integer getYear() {
        return year;
    }
 
    public void setYear(Integer year) {
        this.year = year;
    }
 
    public Integer getSuminput() {
        return suminput;
    }
 
    public void setSuminput(Integer suminput) {
        this.suminput = suminput;
    }
 
    public Integer getSumoutput() {
        return sumoutput;
    }
 
    public void setSumoutput(Integer sumoutput) {
        this.sumoutput = sumoutput;
    }
}