mirror of https://gitee.com/topiam/eiam
⚡ 优化审计
parent
7a5593c007
commit
941a776c9d
|
@ -39,32 +39,32 @@ import lombok.NonNull;
|
|||
@Builder
|
||||
public class Actor implements Serializable {
|
||||
|
||||
public static final String ACTOR_ID = "actor.id";
|
||||
public static final String ACTOR_TYPE = "actor.type";
|
||||
public static final String ACTOR_ID = "actor.id";
|
||||
public static final String ACTOR_TYPE = "actor.type";
|
||||
|
||||
public static final String ACTOR_AUTH_TYPE = "actor.auth_type.keyword";
|
||||
public static final String ACTOR_AUTH_TYPE = "actor.auth_type.keyword";
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = -1144169992714000310L;
|
||||
private static final long serialVersionUID = -1144169992714000310L;
|
||||
|
||||
/**
|
||||
* 行动者ID
|
||||
*/
|
||||
@NonNull
|
||||
@Field(type = FieldType.Keyword, name = "id")
|
||||
private String id;
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 行动者类型
|
||||
*/
|
||||
@NonNull
|
||||
@Field(type = FieldType.Keyword, name = "type")
|
||||
private UserType type;
|
||||
private UserType type;
|
||||
|
||||
/**
|
||||
* 身份验证类型
|
||||
*/
|
||||
@Field(type = FieldType.Keyword, name = "auth_type")
|
||||
private String authType;
|
||||
private String authType;
|
||||
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* eiam-audit - Employee Identity and Access Management Program
|
||||
* Copyright © 2020-2023 TopIAM (support@topiam.cn)
|
||||
* eiam-audit - Employee Identity and Access Management
|
||||
* Copyright © 2022-Present Jinan Yuanchuang Network Technology Co., Ltd. (support@topiam.cn)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
|
|
Loading…
Reference in New Issue