|
|
|
@ -36,7 +36,7 @@ public class WmsActionResponseBean {
|
|
|
|
|
public String message;
|
|
|
|
|
|
|
|
|
|
@ApiParam("列表信息")
|
|
|
|
|
public Set<String> informations;
|
|
|
|
|
public List<String> informations;
|
|
|
|
|
|
|
|
|
|
@ApiParam("可选项")
|
|
|
|
|
public Map<String, Boolean> options;
|
|
|
|
@ -52,7 +52,7 @@ public class WmsActionResponseBean {
|
|
|
|
|
this.message = message;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsActionResponseBean(Double percent, String message, Set<String> informations, List<Map<String, Object>> details, Boolean codeStatus) {
|
|
|
|
|
public WmsActionResponseBean(Double percent, String message, List<String> informations, List<Map<String, Object>> details, Boolean codeStatus) {
|
|
|
|
|
this.percent = percent;
|
|
|
|
|
this.message = message;
|
|
|
|
|
this.informations = informations;
|
|
|
|
|