提交 | 用户 | 时间
|
139c6a
|
1 |
package com.iailab.module.data.point.vo; |
D |
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 PointImportRespVO { |
|
14 |
|
|
15 |
@Schema(description = "创建成功的测点名数组", requiredMode = Schema.RequiredMode.REQUIRED) |
|
16 |
private List<String> createPointnames; |
|
17 |
|
|
18 |
@Schema(description = "更新成功的测点名数组", requiredMode = Schema.RequiredMode.REQUIRED) |
|
19 |
private List<String> updatePointnames; |
|
20 |
|
|
21 |
@Schema(description = "导入失败的测点集合,key 为测点名,value 为失败原因", requiredMode = Schema.RequiredMode.REQUIRED) |
|
22 |
private Map<String, String> failurePointnames; |
|
23 |
} |