hsy
9 天以前 e11706ad56843610601c14aa15868c4c3b908548
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.iocoder.yudao.module.system.controller.admin.dept.vo.post;
 
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 PostImportRespVO {
 
    @Schema(description = "创建成功的岗位数组", requiredMode = Schema.RequiredMode.REQUIRED)
    private List<String> createPostNames;
 
    @Schema(description = "更新成功的岗位数组", requiredMode = Schema.RequiredMode.REQUIRED)
    private List<String> updatePostNames;
 
    @Schema(description = "导入失败的岗位集合 key 为岗位名称,value 为失败原因", requiredMode = Schema.RequiredMode.REQUIRED)
    private Map<String, String> failurePostNames;
 
}