|
|
|
@ -41,11 +41,11 @@ public class WmsTransType extends BaseBean {
|
|
|
|
|
private String transTypeName;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SEQ")
|
|
|
|
|
@ApiParam(value = "序号", example = "-1")
|
|
|
|
|
@ApiParam(value = "序号")
|
|
|
|
|
private Integer seq;
|
|
|
|
|
|
|
|
|
|
@Column(name = "AG_ID")
|
|
|
|
|
@ApiParam(value = "作业流程", example = "-1")
|
|
|
|
|
@ApiParam(value = "作业流程")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long agId;
|
|
|
|
|
|
|
|
|
@ -66,10 +66,19 @@ public class WmsTransType extends BaseBean {
|
|
|
|
|
@ApiParam(value = "PDA图标")
|
|
|
|
|
private String pdaIcon;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_SEND_ERROR_EMAIL", columnDefinition = "int default 2")
|
|
|
|
|
@ApiParam(value = "是否发送异常邮件")
|
|
|
|
|
private Integer isSendErrorEmail;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("菜单URL")
|
|
|
|
|
private String menuUrl;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("交易处理组件调用类")
|
|
|
|
|
private String callClass;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getMenuUrl() {
|
|
|
|
|
return "/handle?transTypeCode=" + this.transTypeCode;
|
|
|
|
|
}
|
|
|
|
|