提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.system.controller.admin.user.vo.user; |
H |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import lombok.Builder; |
|
5 |
import lombok.Data; |
|
6 |
|
|
7 |
import java.util.List; |
|
8 |
import java.util.Map; |
|
9 |
|
|
10 |
@Schema(description = "管理后台 - 用户导入 Response VO") |
|
11 |
@Data |
|
12 |
@Builder |
|
13 |
public class UserImportRespVO { |
|
14 |
|
|
15 |
@Schema(description = "创建成功的用户名数组", requiredMode = Schema.RequiredMode.REQUIRED) |
|
16 |
private List<String> createUsernames; |
|
17 |
|
|
18 |
@Schema(description = "更新成功的用户名数组", requiredMode = Schema.RequiredMode.REQUIRED) |
|
19 |
private List<String> updateUsernames; |
|
20 |
|
|
21 |
@Schema(description = "导入失败的用户集合,key 为用户名,value 为失败原因", requiredMode = Schema.RequiredMode.REQUIRED) |
|
22 |
private Map<String, String> failureUsernames; |
|
23 |
|
|
24 |
} |