9 天以前 8c14b50773a1e582b652c03f5a63bb2233d069b8
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.mes.controller.admin.md.client.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 = "管理后台 - MES 客户导入 Response VO")
@Data
@Builder
public class MesMdClientImportRespVO {
 
    @Schema(description = "创建成功的客户编码数组", requiredMode = Schema.RequiredMode.REQUIRED)
    private List<String> createCodes;
 
    @Schema(description = "更新成功的客户编码数组", requiredMode = Schema.RequiredMode.REQUIRED)
    private List<String> updateCodes;
 
    @Schema(description = "导入失败的客户集合,key 为客户编码,value 为失败原因", requiredMode = Schema.RequiredMode.REQUIRED)
    private Map<String, String> failureCodes;
 
}