删除无用类
parent
dc1ab4cfe8
commit
a8cc2b939f
|
@ -1,26 +0,0 @@
|
|||
package cn.palmte.work.pojo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AlarmDetailDto implements Serializable {
|
||||
|
||||
private int alarmDetailId;
|
||||
|
||||
private String pushConfigId;
|
||||
|
||||
public int getAlarmDetailId() {
|
||||
return alarmDetailId;
|
||||
}
|
||||
|
||||
public void setAlarmDetailId(int alarmDetailId) {
|
||||
this.alarmDetailId = alarmDetailId;
|
||||
}
|
||||
|
||||
public String getPushConfigId() {
|
||||
return pushConfigId;
|
||||
}
|
||||
|
||||
public void setPushConfigId(String pushConfigId) {
|
||||
this.pushConfigId = pushConfigId;
|
||||
}
|
||||
}
|
|
@ -1,43 +0,0 @@
|
|||
package cn.palmte.work.pojo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class AlarmDetailReportDto implements Serializable {
|
||||
|
||||
/**
|
||||
* 工地名称
|
||||
*/
|
||||
private String constructionSiteName;
|
||||
|
||||
/**
|
||||
* 告警次数
|
||||
*/
|
||||
private List<Integer> alarmCount;
|
||||
|
||||
private int allCount;
|
||||
|
||||
public int getAllCount() {
|
||||
return allCount;
|
||||
}
|
||||
|
||||
public void setAllCount(int allCount) {
|
||||
this.allCount = allCount;
|
||||
}
|
||||
|
||||
public String getConstructionSiteName() {
|
||||
return constructionSiteName;
|
||||
}
|
||||
|
||||
public void setConstructionSiteName(String constructionSiteName) {
|
||||
this.constructionSiteName = constructionSiteName;
|
||||
}
|
||||
|
||||
public List<Integer> getAlarmCount() {
|
||||
return alarmCount;
|
||||
}
|
||||
|
||||
public void setAlarmCount(List<Integer> alarmCount) {
|
||||
this.alarmCount = alarmCount;
|
||||
}
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
package cn.palmte.work.pojo;
|
||||
|
||||
public class AlarmDetailReportExcel {
|
||||
|
||||
private String constructionSiteName;
|
||||
|
||||
private String alarmTypeName;
|
||||
|
||||
private int alarmCount;
|
||||
|
||||
public String getConstructionSiteName() {
|
||||
return constructionSiteName;
|
||||
}
|
||||
|
||||
public void setConstructionSiteName(String constructionSiteName) {
|
||||
this.constructionSiteName = constructionSiteName;
|
||||
}
|
||||
|
||||
public String getAlarmTypeName() {
|
||||
return alarmTypeName;
|
||||
}
|
||||
|
||||
public void setAlarmTypeName(String alarmTypeName) {
|
||||
this.alarmTypeName = alarmTypeName;
|
||||
}
|
||||
|
||||
public int getAlarmCount() {
|
||||
return alarmCount;
|
||||
}
|
||||
|
||||
public void setAlarmCount(int alarmCount) {
|
||||
this.alarmCount = alarmCount;
|
||||
}
|
||||
}
|
|
@ -1,21 +0,0 @@
|
|||
package cn.palmte.work.pojo;
|
||||
|
||||
/**
|
||||
* Created by wang.lin@esstx.cn on 2018/7/17.
|
||||
*/
|
||||
public class AliSmsTemplate {
|
||||
|
||||
private String code;
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public AliSmsTemplate(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
}
|
|
@ -1,49 +0,0 @@
|
|||
package cn.palmte.work.pojo;
|
||||
|
||||
public class AllocationPermissionDto {
|
||||
|
||||
//已分配
|
||||
public static final int ALLOCATION = 0;
|
||||
//未分配
|
||||
public static final int NOT_ALLOCATION = 1;
|
||||
|
||||
private int permissionId;
|
||||
|
||||
private String permissionName;
|
||||
|
||||
private String perminssionCode;
|
||||
|
||||
private int isAllocation;
|
||||
|
||||
public int getPermissionId() {
|
||||
return permissionId;
|
||||
}
|
||||
|
||||
public void setPermissionId(int permissionId) {
|
||||
this.permissionId = permissionId;
|
||||
}
|
||||
|
||||
public String getPermissionName() {
|
||||
return permissionName;
|
||||
}
|
||||
|
||||
public void setPermissionName(String permissionName) {
|
||||
this.permissionName = permissionName;
|
||||
}
|
||||
|
||||
public String getPerminssionCode() {
|
||||
return perminssionCode;
|
||||
}
|
||||
|
||||
public void setPerminssionCode(String perminssionCode) {
|
||||
this.perminssionCode = perminssionCode;
|
||||
}
|
||||
|
||||
public int getIsAllocation() {
|
||||
return isAllocation;
|
||||
}
|
||||
|
||||
public void setIsAllocation(int isAllocation) {
|
||||
this.isAllocation = isAllocation;
|
||||
}
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
package cn.palmte.work.pojo;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class BindingDto implements Serializable {
|
||||
|
||||
private int appManagerId;
|
||||
|
||||
private String ids;
|
||||
|
||||
public int getAppManagerId() {
|
||||
return appManagerId;
|
||||
}
|
||||
|
||||
public void setAppManagerId(int appManagerId) {
|
||||
this.appManagerId = appManagerId;
|
||||
}
|
||||
|
||||
public String getIds() {
|
||||
return ids;
|
||||
}
|
||||
|
||||
public void setIds(String ids) {
|
||||
this.ids = ids;
|
||||
}
|
||||
}
|
|
@ -1,249 +0,0 @@
|
|||
package cn.palmte.work.pojo;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
public class ConstructionSiteDto implements Serializable {
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String projectName;
|
||||
|
||||
private String projectAddress;
|
||||
|
||||
private int regionId;
|
||||
|
||||
private String regionName;
|
||||
|
||||
private String areaCode;
|
||||
|
||||
private String areaName;
|
||||
|
||||
private String location;
|
||||
|
||||
private String buildCompany;
|
||||
|
||||
private String constructionCompany;
|
||||
|
||||
private String coveredArea;
|
||||
|
||||
private String startDate;
|
||||
|
||||
private String endDate;
|
||||
|
||||
private String principalName;
|
||||
|
||||
private String principalPhone;
|
||||
|
||||
private String serverAddress;
|
||||
|
||||
private int isDeleted;
|
||||
|
||||
private int createdBy;
|
||||
|
||||
private Date createdTime;
|
||||
|
||||
private int lastUpdatedBy;
|
||||
|
||||
private Date lastUpdatedTime;
|
||||
|
||||
private String siteCode;
|
||||
|
||||
//经度
|
||||
private String longitude;
|
||||
|
||||
//纬度
|
||||
private String latitude;
|
||||
|
||||
public String getLongitude() {
|
||||
return longitude;
|
||||
}
|
||||
|
||||
public void setLongitude(String longitude) {
|
||||
this.longitude = longitude;
|
||||
}
|
||||
|
||||
public String getLatitude() {
|
||||
return latitude;
|
||||
}
|
||||
|
||||
public void setLatitude(String latitude) {
|
||||
this.latitude = latitude;
|
||||
}
|
||||
|
||||
public String getSiteCode() {
|
||||
return siteCode;
|
||||
}
|
||||
|
||||
public void setSiteCode(String siteCode) {
|
||||
this.siteCode = siteCode;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getProjectName() {
|
||||
return projectName;
|
||||
}
|
||||
|
||||
public void setProjectName(String projectName) {
|
||||
this.projectName = projectName;
|
||||
}
|
||||
|
||||
public String getProjectAddress() {
|
||||
return projectAddress;
|
||||
}
|
||||
|
||||
public void setProjectAddress(String projectAddress) {
|
||||
this.projectAddress = projectAddress;
|
||||
}
|
||||
|
||||
public int getRegionId() {
|
||||
return regionId;
|
||||
}
|
||||
|
||||
public void setRegionId(int regionId) {
|
||||
this.regionId = regionId;
|
||||
}
|
||||
|
||||
public String getRegionName() {
|
||||
return regionName;
|
||||
}
|
||||
|
||||
public void setRegionName(String regionName) {
|
||||
this.regionName = regionName;
|
||||
}
|
||||
|
||||
public String getAreaCode() {
|
||||
return areaCode;
|
||||
}
|
||||
|
||||
public void setAreaCode(String areaCode) {
|
||||
this.areaCode = areaCode;
|
||||
}
|
||||
|
||||
public String getAreaName() {
|
||||
return areaName;
|
||||
}
|
||||
|
||||
public void setAreaName(String areaName) {
|
||||
this.areaName = areaName;
|
||||
}
|
||||
|
||||
public String getLocation() {
|
||||
return location;
|
||||
}
|
||||
|
||||
public void setLocation(String location) {
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
public String getBuildCompany() {
|
||||
return buildCompany;
|
||||
}
|
||||
|
||||
public void setBuildCompany(String buildCompany) {
|
||||
this.buildCompany = buildCompany;
|
||||
}
|
||||
|
||||
public String getConstructionCompany() {
|
||||
return constructionCompany;
|
||||
}
|
||||
|
||||
public void setConstructionCompany(String constructionCompany) {
|
||||
this.constructionCompany = constructionCompany;
|
||||
}
|
||||
|
||||
public String getCoveredArea() {
|
||||
return coveredArea;
|
||||
}
|
||||
|
||||
public void setCoveredArea(String coveredArea) {
|
||||
this.coveredArea = coveredArea;
|
||||
}
|
||||
|
||||
public String getStartDate() {
|
||||
return startDate;
|
||||
}
|
||||
|
||||
public void setStartDate(String startDate) {
|
||||
this.startDate = startDate;
|
||||
}
|
||||
|
||||
public String getEndDate() {
|
||||
return endDate;
|
||||
}
|
||||
|
||||
public void setEndDate(String endDate) {
|
||||
this.endDate = endDate;
|
||||
}
|
||||
|
||||
public String getPrincipalName() {
|
||||
return principalName;
|
||||
}
|
||||
|
||||
public void setPrincipalName(String principalName) {
|
||||
this.principalName = principalName;
|
||||
}
|
||||
|
||||
public String getPrincipalPhone() {
|
||||
return principalPhone;
|
||||
}
|
||||
|
||||
public void setPrincipalPhone(String principalPhone) {
|
||||
this.principalPhone = principalPhone;
|
||||
}
|
||||
|
||||
public String getServerAddress() {
|
||||
return serverAddress;
|
||||
}
|
||||
|
||||
public void setServerAddress(String serverAddress) {
|
||||
this.serverAddress = serverAddress;
|
||||
}
|
||||
|
||||
public int getIsDeleted() {
|
||||
return isDeleted;
|
||||
}
|
||||
|
||||
public void setIsDeleted(int isDeleted) {
|
||||
this.isDeleted = isDeleted;
|
||||
}
|
||||
|
||||
public int getCreatedBy() {
|
||||
return createdBy;
|
||||
}
|
||||
|
||||
public void setCreatedBy(int createdBy) {
|
||||
this.createdBy = createdBy;
|
||||
}
|
||||
|
||||
public Date getCreatedTime() {
|
||||
return createdTime;
|
||||
}
|
||||
|
||||
public void setCreatedTime(Date createdTime) {
|
||||
this.createdTime = createdTime;
|
||||
}
|
||||
|
||||
public int getLastUpdatedBy() {
|
||||
return lastUpdatedBy;
|
||||
}
|
||||
|
||||
public void setLastUpdatedBy(int lastUpdatedBy) {
|
||||
this.lastUpdatedBy = lastUpdatedBy;
|
||||
}
|
||||
|
||||
public Date getLastUpdatedTime() {
|
||||
return lastUpdatedTime;
|
||||
}
|
||||
|
||||
public void setLastUpdatedTime(Date lastUpdatedTime) {
|
||||
this.lastUpdatedTime = lastUpdatedTime;
|
||||
}
|
||||
}
|
|
@ -1,104 +0,0 @@
|
|||
package cn.palmte.work.pojo;
|
||||
|
||||
public class ForecastData {
|
||||
|
||||
private String aqi;
|
||||
|
||||
private String forecastTime;
|
||||
|
||||
private String primaryPollutant;
|
||||
|
||||
private String temp;
|
||||
|
||||
private String weather;
|
||||
|
||||
private String windLevel;
|
||||
|
||||
private String day;
|
||||
|
||||
private String week;
|
||||
|
||||
private String aqiLevel;
|
||||
|
||||
private String aqiRange;
|
||||
|
||||
public String getAqiRange() {
|
||||
return aqiRange;
|
||||
}
|
||||
|
||||
public void setAqiRange(String aqiRange) {
|
||||
this.aqiRange = aqiRange;
|
||||
}
|
||||
|
||||
public String getAqiLevel() {
|
||||
return aqiLevel;
|
||||
}
|
||||
|
||||
public void setAqiLevel(String aqiLevel) {
|
||||
this.aqiLevel = aqiLevel;
|
||||
}
|
||||
|
||||
public String getDay() {
|
||||
return day;
|
||||
}
|
||||
|
||||
public void setDay(String day) {
|
||||
this.day = day;
|
||||
}
|
||||
|
||||
public String getWeek() {
|
||||
return week;
|
||||
}
|
||||
|
||||
public void setWeek(String week) {
|
||||
this.week = week;
|
||||
}
|
||||
|
||||
public String getAqi() {
|
||||
return aqi;
|
||||
}
|
||||
|
||||
public void setAqi(String aqi) {
|
||||
this.aqi = aqi;
|
||||
}
|
||||
|
||||
public String getForecastTime() {
|
||||
return forecastTime;
|
||||
}
|
||||
|
||||
public void setForecastTime(String forecastTime) {
|
||||
this.forecastTime = forecastTime;
|
||||
}
|
||||
|
||||
public String getPrimaryPollutant() {
|
||||
return primaryPollutant;
|
||||
}
|
||||
|
||||
public void setPrimaryPollutant(String primaryPollutant) {
|
||||
this.primaryPollutant = primaryPollutant;
|
||||
}
|
||||
|
||||
public String getTemp() {
|
||||
return temp;
|
||||
}
|
||||
|
||||
public void setTemp(String temp) {
|
||||
this.temp = temp;
|
||||
}
|
||||
|
||||
public String getWeather() {
|
||||
return weather;
|
||||
}
|
||||
|
||||
public void setWeather(String weather) {
|
||||
this.weather = weather;
|
||||
}
|
||||
|
||||
public String getWindLevel() {
|
||||
return windLevel;
|
||||
}
|
||||
|
||||
public void setWindLevel(String windLevel) {
|
||||
this.windLevel = windLevel;
|
||||
}
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
package cn.palmte.work.pojo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class ReportTable {
|
||||
|
||||
private List<String> thead;
|
||||
|
||||
private List<AlarmDetailReportDto> tbody;
|
||||
|
||||
public List<String> getThead() {
|
||||
return thead;
|
||||
}
|
||||
|
||||
public void setThead(List<String> thead) {
|
||||
this.thead = thead;
|
||||
}
|
||||
|
||||
public List<AlarmDetailReportDto> getTbody() {
|
||||
return tbody;
|
||||
}
|
||||
|
||||
public void setTbody(List<AlarmDetailReportDto> tbody) {
|
||||
this.tbody = tbody;
|
||||
}
|
||||
}
|
|
@ -1,37 +0,0 @@
|
|||
package cn.palmte.work.pojo;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
public class StationAirDataDto {
|
||||
|
||||
String aqi;
|
||||
|
||||
String updateTime;
|
||||
|
||||
List<Map<String, Object>> airData;
|
||||
|
||||
public String getAqi() {
|
||||
return aqi;
|
||||
}
|
||||
|
||||
public void setAqi(String aqi) {
|
||||
this.aqi = aqi;
|
||||
}
|
||||
|
||||
public String getUpdateTime() {
|
||||
return updateTime;
|
||||
}
|
||||
|
||||
public void setUpdateTime(String updateTime) {
|
||||
this.updateTime = updateTime;
|
||||
}
|
||||
|
||||
public List<Map<String, Object>> getAirData() {
|
||||
return airData;
|
||||
}
|
||||
|
||||
public void setAirData(List<Map<String, Object>> airData) {
|
||||
this.airData = airData;
|
||||
}
|
||||
}
|
|
@ -1,36 +0,0 @@
|
|||
package cn.palmte.work.pojo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class StatisticsDto {
|
||||
|
||||
private List<String> titles;
|
||||
|
||||
private List<String> dateStr;
|
||||
|
||||
private List<StatisticsItem> seriesData;
|
||||
|
||||
public List<String> getDateStr() {
|
||||
return dateStr;
|
||||
}
|
||||
|
||||
public void setDateStr(List<String> dateStr) {
|
||||
this.dateStr = dateStr;
|
||||
}
|
||||
|
||||
public List<StatisticsItem> getSeriesData() {
|
||||
return seriesData;
|
||||
}
|
||||
|
||||
public void setSeriesData(List<StatisticsItem> seriesData) {
|
||||
this.seriesData = seriesData;
|
||||
}
|
||||
|
||||
public List<String> getTitles() {
|
||||
return titles;
|
||||
}
|
||||
|
||||
public void setTitles(List<String> titles) {
|
||||
this.titles = titles;
|
||||
}
|
||||
}
|
|
@ -1,43 +0,0 @@
|
|||
package cn.palmte.work.pojo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class StatisticsItem {
|
||||
|
||||
private String name;
|
||||
private String type;
|
||||
private String stack;
|
||||
private List<Long> data;
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public void setType(String type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
public String getStack() {
|
||||
return stack;
|
||||
}
|
||||
|
||||
public void setStack(String stack) {
|
||||
this.stack = stack;
|
||||
}
|
||||
|
||||
public List<Long> getData() {
|
||||
return data;
|
||||
}
|
||||
|
||||
public void setData(List<Long> data) {
|
||||
this.data = data;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue