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;
|
}
|
}
|