This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-argus-service/src/main/java/com/nis/domain/restful/NtcLwhhReport.java

46 lines
974 B
Java

package com.nis.domain.restful;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.wordnik.swagger.annotations.ApiModelProperty;
public class NtcLwhhReport extends NtcReportEntity<NtcLwhhReport> {
private static final long serialVersionUID = -5980925900825684234L;
@JsonInclude(value = Include.NON_NULL)
@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;
}
}