(1)加载中样式提交

(2)查询日志总量Controller提交
待接口可用后调整
This commit is contained in:
wangxin
2018-06-13 15:56:29 +08:00
parent a78481bda2
commit e5af29716f
5 changed files with 162 additions and 82 deletions

View File

@@ -0,0 +1,91 @@
/**
*@Title: ReportLog.java
*@Package com.nis.domain.log
*@Description TODO
*@author dell
*@date 2018年6月13日 下午2:21:04
*@version 版本号
*/
package com.nis.domain.log;
import java.util.Date;
import com.nis.domain.BaseEntity;
/**
* @ClassName: ReportLog.java
* @Description: TODO
* @author (dell)
* @date 2018年6月13日 下午2:21:04
* @version V1.0
*/
public class ReportLog extends BaseEntity<ReportLog>{
/**
* @Fields serialVersionUID:TODO用一句话描述这个变量表示什么
*
* @since 1.0.0
*/
private static final long serialVersionUID = 7079305499220977782L;
private Long configId;
private Long sum;
private Integer service;
private Date statTime;
/**
* configId
* @return configId
*/
public Long getConfigId() {
return configId;
}
/**
* @param configId the configId to set
*/
public void setConfigId(Long configId) {
this.configId = configId;
}
/**
* sum
* @return sum
*/
public Long getSum() {
return sum;
}
/**
* @param sum the sum to set
*/
public void setSum(Long sum) {
this.sum = sum;
}
/**
* service
* @return service
*/
public Integer getService() {
return service;
}
/**
* @param service the service to set
*/
public void setService(Integer service) {
this.service = service;
}
/**
* statTime
* @return statTime
*/
public Date getStatTime() {
return statTime;
}
/**
* @param statTime the statTime to set
*/
public void setStatTime(Date statTime) {
this.statTime = statTime;
}
}