解决冲突

yun-zuoyi
Silliter 7 years ago
parent 256c2acd41
commit 8e6bc17a45

@ -8,6 +8,7 @@ import lombok.NoArgsConstructor;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.Set;
/** /**
* @Description : PDAbean * @Description : PDAbean
@ -35,10 +36,10 @@ public class WmsActionResponseBean {
public String message; public String message;
@ApiParam("列表信息") @ApiParam("列表信息")
public List<String> informations; public Set<String> informations;
@ApiParam("可选项") @ApiParam("可选项")
public List<String> options; public Set<String> options;
@ApiParam("选中的明细数据") @ApiParam("选中的明细数据")
public List<Map<String, Object>> details; public List<Map<String, Object>> details;
@ -51,7 +52,7 @@ public class WmsActionResponseBean {
this.message = message; this.message = message;
} }
public WmsActionResponseBean(Double percent, String message, List<String> informations, List<Map<String, Object>> details, Boolean codeStatus) { public WmsActionResponseBean(Double percent, String message, Set<String> informations, List<Map<String, Object>> details, Boolean codeStatus) {
this.percent = percent; this.percent = percent;
this.message = message; this.message = message;
this.informations = informations; this.informations = informations;

Loading…
Cancel
Save