实时报表统计接口实现

This commit is contained in:
zhangdongxu
2018-07-16 14:36:43 +08:00
parent 4f48d3862e
commit 7a262b72a8
11 changed files with 862 additions and 7 deletions

View File

@@ -0,0 +1,43 @@
package com.nis.domain.restful;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.wordnik.swagger.annotations.ApiModelProperty;
public class NtcEntranceReport extends NtcReportEntity<NtcEntranceReport> {
private static final long serialVersionUID = -3973713578165502900L;
@ApiModelProperty(value = "局点(出入口)", required = true)
protected Integer entranceId;
protected String searchEntrance;
/**
* @return the entranceId
*/
public Integer getEntranceId() {
return entranceId;
}
/**
* @param entranceId the entranceId to set
*/
public void setEntranceId(Integer entranceId) {
this.entranceId = entranceId;
}
@JsonIgnore
/**
* @return the searchEntrance
*/
public String getSearchEntrance() {
return searchEntrance;
}
/**
* @param searchEntrance the searchEntrance to set
*/
public void setSearchEntrance(String searchEntrance) {
this.searchEntrance = searchEntrance;
}
}