|
|
|
@ -65,6 +65,12 @@ public class WmsActionResponseBean<Obj> {
|
|
|
|
|
public Boolean toSelected = false;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 默认为true,如果这个值为true就禁用按钮否则可用,
|
|
|
|
|
*/
|
|
|
|
|
@ApiParam(value = "按钮是否禁用")
|
|
|
|
|
public Boolean isBtnDisabled = true;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 与 toSelected 属性配合使用,
|
|
|
|
|
* 选择数据后把选中行的 keyColumn 字段的值写入界面输入框并触发回车事件
|
|
|
|
|
*/
|
|
|
|
@ -96,4 +102,13 @@ public class WmsActionResponseBean<Obj> {
|
|
|
|
|
this.codeStatus = codeStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsActionResponseBean(String percent, String message, List<String> informations, Obj details, Boolean codeStatus, Boolean isBtnDisabled) {
|
|
|
|
|
this.isBtnDisabled = isBtnDisabled;
|
|
|
|
|
this.percent = percent;
|
|
|
|
|
this.message = message;
|
|
|
|
|
this.informations = informations;
|
|
|
|
|
this.details = details;
|
|
|
|
|
this.codeStatus = codeStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|