开发actionDo的模块

yun-zuoyi
jimmy 7 years ago
parent d616af3a00
commit e6251e56fe

@ -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;

@ -1162,6 +1162,8 @@ public class WmsHqlPack {
getStringBuilderPack(wmsActionLogDetails, result);
HqlPack.getOrderByPack(new Object[]{1}, new String[]{"seq"}, result);
return result.toString();
}
}

Loading…
Cancel
Save