Commit 0e8bab8a by yuwei

2.0.0项目初始化

parent 459f2fb1
......@@ -17,6 +17,7 @@ public class ApiLogDto implements Serializable {
private String callerIp;
private String callerUrl;
private String callerParams;
private Integer callerSize;
private LocalDateTime callerDate;
private Long time;
private String msg;
......
......@@ -45,6 +45,10 @@ public class ApiLogEntity implements Serializable {
*/
private String callerParams;
/**
* 调用返回数据量
*/
private Integer callerSize;
/**
* 调用耗时
*/
private Long time;
......
......@@ -16,6 +16,7 @@ public class ApiLogVo implements Serializable {
private String callerId;
private String callerIp;
private String callerUrl;
private Integer callerSize;
private String callerParams;
private LocalDateTime callerDate;
private Long time;
......
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