实时报表统计接口实现

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,42 @@
package com.nis.domain.restful;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.wordnik.swagger.annotations.ApiModelProperty;
public class NtcLwhhReport extends NtcReportEntity<NtcLwhhReport>{
private static final long serialVersionUID = -5980925900825684234L;
@ApiModelProperty(value="性质", required=true)
protected Integer lwhh ;
protected String searchLwhh;
/**
* @param lwhh the lwhh to set
*/
public void setLwhh(Integer lwhh) {
this.lwhh = lwhh;
}
/**
* @return the lwhh
*/
public Integer getLwhh() {
return lwhh;
}
/**
* @return the searchLwhh
*/
@JsonIgnore
public String getSearchLwhh() {
return searchLwhh;
}
/**
* @param searchLwhh the searchLwhh to set
*/
public void setSearchLwhh(String searchLwhh) {
this.searchLwhh = searchLwhh;
}
}