上传代码
This commit is contained in:
35
src/main/java/com/nis/domain/restful/DfDjLogStatistics.java
Normal file
35
src/main/java/com/nis/domain/restful/DfDjLogStatistics.java
Normal file
@@ -0,0 +1,35 @@
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.StatLogEntity;
|
||||
|
||||
/**
|
||||
* @ClassName: DfDjLogStatistics
|
||||
* @Description: 封堵日志总量统计
|
||||
* @author (zbc)
|
||||
* @date 2016年11月14日 下午4:00:00
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfDjLogStatistics extends StatLogEntity<DfDjLogStatistics> {
|
||||
|
||||
/**
|
||||
* serialVersionUID
|
||||
*/
|
||||
private static final long serialVersionUID = -2664087481901057237L;
|
||||
|
||||
|
||||
@Override
|
||||
@JsonIgnore
|
||||
public Integer getService() {
|
||||
return super.getService();
|
||||
}
|
||||
|
||||
@Override
|
||||
@JsonIgnore
|
||||
public Date getStatTime() {
|
||||
return super.getStatTime();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user