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-ntc/src/main/java/com/nis/domain/log/ReportLog.java
wangxin e5af29716f (1)加载中样式提交
(2)查询日志总量Controller提交
待接口可用后调整
2018-06-13 15:56:29 +08:00

92 lines
1.6 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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