Ics 日志收集功能完成
parent
1a079a1b89
commit
adb95f100f
@ -0,0 +1,31 @@
|
||||
package cn.estsh.i3plus.pojo.model.common;
|
||||
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : wei.peng
|
||||
* @CreateDate : 20-5-29 下午3:40
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
public class ThreadModel implements Serializable {
|
||||
|
||||
@ApiParam(value ="自定义调用ID")
|
||||
private Long requestId;
|
||||
@ApiParam(value ="当前用户ID")
|
||||
private Long userId;
|
||||
@ApiParam(value ="当前用户名称")
|
||||
private String userName;
|
||||
@ApiParam(value ="用户登录IP")
|
||||
private String userHost;
|
||||
@ApiParam(value ="用户登录浏览器")
|
||||
private String userBrowser;
|
||||
@ApiParam(value ="用户登录操作系统")
|
||||
private String userOs;
|
||||
|
||||
}
|
Loading…
Reference in New Issue