|
|
|
@ -41,4 +41,19 @@ public class WmsActionResponseBean {
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "结果代码")
|
|
|
|
|
public Boolean codeStatus;
|
|
|
|
|
|
|
|
|
|
public WmsActionResponseBean(){}
|
|
|
|
|
|
|
|
|
|
public WmsActionResponseBean(Boolean codeStatus,String message) {
|
|
|
|
|
this.message = message;
|
|
|
|
|
this.codeStatus = 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;
|
|
|
|
|
this.details = details;
|
|
|
|
|
this.codeStatus = codeStatus;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|