package com.iailab.module.data.point.vo;

import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Builder;
import lombok.Data;

import java.util.List;
import java.util.Map;

@Schema(description = "管理后台 - 用户导入 Response VO")
@Data
@Builder
public class PointImportRespVO {

    @Schema(description = "创建成功的测点名数组", requiredMode = Schema.RequiredMode.REQUIRED)
    private List<String> createPointnames;

    @Schema(description = "更新成功的测点名数组", requiredMode = Schema.RequiredMode.REQUIRED)
    private List<String> updatePointnames;

    @Schema(description = "导入失败的测点集合,key 为测点名,value 为失败原因", requiredMode = Schema.RequiredMode.REQUIRED)
    private Map<String, String> failurePointnames;
}