提交 | 用户 | 时间
|
03e8ac
|
1 |
package com.iailab.module.data.channel.tag.vo; |
J |
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 |
/** |
|
11 |
* @author Jay |
|
12 |
*/ |
|
13 |
@Schema(description = "管理后台 - 用户导入 Response VO") |
|
14 |
@Data |
|
15 |
@Builder |
|
16 |
public class TagImportRespVO { |
|
17 |
|
|
18 |
@Schema(description = "创建成功的Tag名称数组", requiredMode = Schema.RequiredMode.REQUIRED) |
|
19 |
private List<String> createTagNames; |
|
20 |
|
|
21 |
@Schema(description = "更新成功的Tag名称数组", requiredMode = Schema.RequiredMode.REQUIRED) |
|
22 |
private List<String> updateTagNames; |
|
23 |
|
|
24 |
@Schema(description = "导入失败的Tag集合,key 为Tag名称,value 为失败原因", requiredMode = Schema.RequiredMode.REQUIRED) |
|
25 |
private Map<String, String> failureTagNames; |
|
26 |
} |