package com.gkhy.safePlatform.incidentManage.query;
|
|
public class AccidentReportRPCQuery {
|
|
private String level;
|
|
// type=1:月 type=2:年
|
private Integer type;
|
|
private int year;
|
|
private int month;
|
|
public String getLevel() {
|
return level;
|
}
|
|
public void setLevel(String level) {
|
this.level = level;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public int getYear() {
|
return year;
|
}
|
|
public void setYear(int year) {
|
this.year = year;
|
}
|
|
public int getMonth() {
|
return month;
|
}
|
|
public void setMonth(int month) {
|
this.month = month;
|
}
|
}
|