101 lines
2.1 KiB
Plaintext
101 lines
2.1 KiB
Plaintext
|
|
package com.sercurityControl.proteam.domain;
|
||
|
|
|
||
|
|
import com.securityControl.common.core.web.domain.BaseEntity;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 周风险计划数量实体类
|
||
|
|
* @author ljl
|
||
|
|
*/
|
||
|
|
public class WeekRiskNum extends BaseEntity {
|
||
|
|
|
||
|
|
//城市代码
|
||
|
|
private String cictyNo;
|
||
|
|
//城市名称
|
||
|
|
private String cictyName;
|
||
|
|
|
||
|
|
//周类型
|
||
|
|
private int weekType;
|
||
|
|
|
||
|
|
//日期集合
|
||
|
|
private List<String> timeList;
|
||
|
|
|
||
|
|
private List<String> weekList;
|
||
|
|
|
||
|
|
//二级风险集合
|
||
|
|
private List<Integer> twoRiskList;
|
||
|
|
|
||
|
|
|
||
|
|
//三级风险集合
|
||
|
|
private List<Integer> threeRiskList;
|
||
|
|
|
||
|
|
public List<String> getWeekList() {
|
||
|
|
return weekList;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setWeekList(List<String> weekList) {
|
||
|
|
this.weekList = weekList;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCictyNo() {
|
||
|
|
return cictyNo;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCictyNo(String cictyNo) {
|
||
|
|
this.cictyNo = cictyNo;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getCictyName() {
|
||
|
|
return cictyName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCictyName(String cictyName) {
|
||
|
|
this.cictyName = cictyName;
|
||
|
|
}
|
||
|
|
|
||
|
|
public int getWeekType() {
|
||
|
|
return weekType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setWeekType(int weekType) {
|
||
|
|
this.weekType = weekType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public List<String> getTimeList() {
|
||
|
|
return timeList;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setTimeList(List<String> timeList) {
|
||
|
|
this.timeList = timeList;
|
||
|
|
}
|
||
|
|
|
||
|
|
public List<Integer> getTwoRiskList() {
|
||
|
|
return twoRiskList;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setTwoRiskList(List<Integer> twoRiskList) {
|
||
|
|
this.twoRiskList = twoRiskList;
|
||
|
|
}
|
||
|
|
|
||
|
|
public List<Integer> getThreeRiskList() {
|
||
|
|
return threeRiskList;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setThreeRiskList(List<Integer> threeRiskList) {
|
||
|
|
this.threeRiskList = threeRiskList;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String toString() {
|
||
|
|
return "WeekRiskNum{" +
|
||
|
|
"cictyNo='" + cictyNo + '\'' +
|
||
|
|
", cictyName='" + cictyName + '\'' +
|
||
|
|
", weekType=" + weekType +
|
||
|
|
", timeList=" + timeList +
|
||
|
|
", twoRiskList=" + twoRiskList +
|
||
|
|
", threeRiskList=" + threeRiskList +
|
||
|
|
'}';
|
||
|
|
}
|
||
|
|
}
|