forked from sfms3.0/sfms3.0
1 changed files with 24 additions and 0 deletions
@ -0,0 +1,24 @@ |
|||||
|
package com.win.module.wms.controller.itembasic.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 ItembasicImportRespVO { |
||||
|
|
||||
|
@Schema(description = "创建成功的用户名数组", requiredMode = Schema.RequiredMode.REQUIRED) |
||||
|
private List<String> createItembasics; |
||||
|
|
||||
|
@Schema(description = "更新成功的用户名数组", requiredMode = Schema.RequiredMode.REQUIRED) |
||||
|
private List<String> updateItembasics; |
||||
|
|
||||
|
@Schema(description = "导入失败的用户集合,key 为用户名,value 为失败原因", requiredMode = Schema.RequiredMode.REQUIRED) |
||||
|
private Map<String, String> failureItembasics; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue