2026-09-04 3495965b99dfcbf191eefb8294a8de05bedc160a
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.wm.materialstock.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 MesWmMaterialStockImportRespVO {
 
    @Schema(description = "创建成功的库存记录数组(物料编码-仓库)", requiredMode = Schema.RequiredMode.REQUIRED)
    private List<String> createNames;
 
    @Schema(description = "更新成功的库存记录数组(物料编码-仓库)", requiredMode = Schema.RequiredMode.REQUIRED)
    private List<String> updateNames;
 
    @Schema(description = "导入失败的库存记录集合,key 为物料编码-仓库,value 为失败原因", requiredMode = Schema.RequiredMode.REQUIRED)
    private Map<String, String> failureNames;
 
}