Commit 6e4686cc by 宋珺琪

添加各个模块的统计计数接口

parent a6d2f06d
package com.founder.servicebase.logs;
import lombok.Data;
@Data
public class LogMoudleCount {
/**
* 计数
*/
private Integer count;
/**
* 模块
*/
private String moudle;
public LogMoudleCount() {
}
public LogMoudleCount(Integer count, String moudle) {
this.count = count;
this.moudle = moudle;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment