43 lines
819 B
Java
43 lines
819 B
Java
|
|
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;
|
||
|
|
}
|
||
|
|
}
|