|
|
|
@ -52,4 +52,22 @@ public class WmsActionModule extends BaseBean {
|
|
|
|
|
@Column(name = "IS_SHOW_INFO")
|
|
|
|
|
@ApiParam(value = "是否实现回显", example = "0")
|
|
|
|
|
public Integer isShowInfo;
|
|
|
|
|
|
|
|
|
|
@ApiParam(value = "作业类型名称", example = "0")
|
|
|
|
|
public String opTypeName;
|
|
|
|
|
|
|
|
|
|
public WmsActionModule() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsActionModule(Long id, String amName, String amDesc, String callClass,
|
|
|
|
|
Integer amType, String opTypeCode, Integer isShowInfo, String opTypeName) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.amName = amName;
|
|
|
|
|
this.amDesc = amDesc;
|
|
|
|
|
this.callClass = callClass;
|
|
|
|
|
this.amType = amType;
|
|
|
|
|
this.opTypeCode = opTypeCode;
|
|
|
|
|
this.isShowInfo = isShowInfo;
|
|
|
|
|
this.opTypeName = opTypeName;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|