上传代码

This commit is contained in:
zhangdongxu
2017-12-19 14:55:52 +08:00
commit 13acafd43d
4777 changed files with 898870 additions and 0 deletions

View File

@@ -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;
}
}