上传代码

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,77 @@
package com.nis.domain.restful;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.nis.domain.DfReportEntity;
import com.nis.domain.StatLogEntity;
import com.wordnik.swagger.annotations.ApiModelProperty;
/**
*
* @ClassName: DfLwhhAttrReport
* @Description: TODO(来文函号、性质多维实时统计)
* @author (DDM)
* @date 2017年8月4日下午2:29:28
* @version V1.0
*/
public class DjLwhhAttrMonth extends StatLogEntity{
private static final long serialVersionUID = -1183216703585029756L;
@ApiModelProperty(value = "业务类型", required = true)
protected Integer service;
@ApiModelProperty(value = "来文函号", required = true)
protected Long lwhh;
@ApiModelProperty(value = "性质", required = true)
protected Long attrType;
protected String searchService;
protected String searchLwhh;
protected String searchAttrType;
public Integer getService() {
return service;
}
public void setService(Integer service) {
this.service = service;
}
public Long getLwhh() {
return lwhh;
}
public void setLwhh(Long lwhh) {
this.lwhh = lwhh;
}
public Long getAttrType() {
return attrType;
}
public void setAttrType(Long attrType) {
this.attrType = attrType;
}
@JsonIgnore
public String getSearchService() {
return searchService;
}
public void setSearchService(String searchService) {
this.searchService = searchService;
}
@JsonIgnore
public String getSearchLwhh() {
return searchLwhh;
}
public void setSearchLwhh(String searchLwhh) {
this.searchLwhh = searchLwhh;
}
@JsonIgnore
public String getSearchAttrType() {
return searchAttrType;
}
public void setSearchAttrType(String searchAttrType) {
this.searchAttrType = searchAttrType;
}
}