84 lines
1.8 KiB
Plaintext
84 lines
1.8 KiB
Plaintext
|
|
package com.sercurityControl.proteam.domain;
|
||
|
|
|
||
|
|
import com.securityControl.common.core.web.domain.BaseEntity;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 日计划数量实体类
|
||
|
|
*
|
||
|
|
* @author ljl
|
||
|
|
*/
|
||
|
|
public class DayPlanNum extends BaseEntity {
|
||
|
|
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
|
||
|
|
|
||
|
|
//(日计划总数)
|
||
|
|
private int dayPlanTatolNum;
|
||
|
|
//(已执行总数)
|
||
|
|
private int executedTatolNum;
|
||
|
|
|
||
|
|
//计划日期
|
||
|
|
private String planTime;
|
||
|
|
|
||
|
|
//工程类型
|
||
|
|
private String proType;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 各地市计划数量
|
||
|
|
*/
|
||
|
|
private List<DayPlanCityNum> cityNumList;
|
||
|
|
|
||
|
|
public String getProType() {
|
||
|
|
return proType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setProType(String proType) {
|
||
|
|
this.proType = proType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public int getDayPlanTatolNum() {
|
||
|
|
return dayPlanTatolNum;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDayPlanTatolNum(int dayPlanTatolNum) {
|
||
|
|
this.dayPlanTatolNum = dayPlanTatolNum;
|
||
|
|
}
|
||
|
|
|
||
|
|
public int getExecutedTatolNum() {
|
||
|
|
return executedTatolNum;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setExecutedTatolNum(int executedTatolNum) {
|
||
|
|
this.executedTatolNum = executedTatolNum;
|
||
|
|
}
|
||
|
|
|
||
|
|
public List<DayPlanCityNum> getCityNumList() {
|
||
|
|
return cityNumList;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setCityNumList(List<DayPlanCityNum> cityNumList) {
|
||
|
|
this.cityNumList = cityNumList;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getPlanTime() {
|
||
|
|
return planTime;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setPlanTime(String planTime) {
|
||
|
|
this.planTime = planTime;
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String toString() {
|
||
|
|
return "DayPlanNum{" +
|
||
|
|
"dayPlanTatolNum=" + dayPlanTatolNum +
|
||
|
|
", executedTatolNum=" + executedTatolNum +
|
||
|
|
", planTime='" + planTime + '\'' +
|
||
|
|
", proType='" + proType + '\'' +
|
||
|
|
", cityNumList=" + cityNumList +
|
||
|
|
'}';
|
||
|
|
}
|
||
|
|
}
|