上传代码
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.DfJitLogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
public class DfJitGuaranteeDestReport extends DfJitLogEntity<DfJitGuaranteeDestReport> {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 4886806743747030623L;
|
||||
|
||||
@ApiModelProperty(value = "保障期", required = true)
|
||||
private Integer guarantee;
|
||||
|
||||
/**
|
||||
* 查询部分
|
||||
*/
|
||||
private String searchGuarantee;
|
||||
|
||||
public DfJitGuaranteeDestReport() {
|
||||
super();
|
||||
}
|
||||
|
||||
public Integer getGuarantee() {
|
||||
return guarantee;
|
||||
}
|
||||
|
||||
public void setGuarantee(Integer guarantee) {
|
||||
this.guarantee = guarantee;
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchGuarantee() {
|
||||
return searchGuarantee;
|
||||
}
|
||||
|
||||
public void setSearchGuarantee(String searchGuarantee) {
|
||||
this.searchGuarantee = searchGuarantee;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user