|
|
|
@ -1,5 +1,7 @@
|
|
|
|
|
package cn.estsh.i3plus.pojo.wms.bean;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiParam;
|
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
@ -38,7 +40,7 @@ public class WmsActionResponseBean {
|
|
|
|
|
public List<String> informations;
|
|
|
|
|
|
|
|
|
|
@ApiParam("可选项")
|
|
|
|
|
public List<String> options;
|
|
|
|
|
public Map<String,Boolean> options;
|
|
|
|
|
|
|
|
|
|
@ApiParam("选中的明细数据")
|
|
|
|
|
public List<Map<String, Object>> details;
|
|
|
|
@ -46,6 +48,10 @@ public class WmsActionResponseBean {
|
|
|
|
|
@ApiParam(value = "结果代码")
|
|
|
|
|
public Boolean codeStatus;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "作业任务编号", example = "1")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
public Long alId;
|
|
|
|
|
|
|
|
|
|
public WmsActionResponseBean(Boolean codeStatus, String message) {
|
|
|
|
|
this.codeStatus = codeStatus;
|
|
|
|
|
this.message = message;
|
|
|
|
|