实时报表统计接口实现
This commit is contained in:
42
src/main/java/com/nis/domain/restful/NtcLwhhReport.java
Normal file
42
src/main/java/com/nis/domain/restful/NtcLwhhReport.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user