|
@ -22,6 +22,7 @@ public class BaseLoginLogDO extends UuidIdentityEntity implements java.io.Serial
|
|
|
private Date operateTime;
|
|
|
private String name;//用户姓名
|
|
|
private String clientType;//客服端类型app,wx,pad,pc
|
|
|
private String token;//登录token 做权限验证用
|
|
|
|
|
|
|
|
|
@Column(name="operate_time")
|
|
@ -96,4 +97,13 @@ public class BaseLoginLogDO extends UuidIdentityEntity implements java.io.Serial
|
|
|
public void setClientType(String clientType) {
|
|
|
this.clientType = clientType;
|
|
|
}
|
|
|
|
|
|
@Column(name="token")
|
|
|
public String getToken() {
|
|
|
return token;
|
|
|
}
|
|
|
|
|
|
public void setToken(String token) {
|
|
|
this.token = token;
|
|
|
}
|
|
|
}
|