|
|
|
@ -36,15 +36,6 @@ public class WmsActionLogDetails extends BaseBean {
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
public Long alId;
|
|
|
|
|
|
|
|
|
|
//get单独处理
|
|
|
|
|
public Long getAlId() {
|
|
|
|
|
if (alId != null) {
|
|
|
|
|
return alId.longValue();
|
|
|
|
|
} else {
|
|
|
|
|
return alId;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value = "流程名称")
|
|
|
|
|
public String agNameC;
|
|
|
|
@ -61,12 +52,17 @@ public class WmsActionLogDetails extends BaseBean {
|
|
|
|
|
@ApiParam(value = "失败跳转步骤", example = "1")
|
|
|
|
|
public Integer ngSeq;
|
|
|
|
|
|
|
|
|
|
// 10=只输入一次,20=输入多次,30=输入多次不允许重复,40=本流程结束
|
|
|
|
|
/**
|
|
|
|
|
* 10=只输入一次,20=输入多次,
|
|
|
|
|
* 30=输入多次不允许重复,40=本流程结束
|
|
|
|
|
*/
|
|
|
|
|
@Column(name = "VALUE_TYPE")
|
|
|
|
|
@ApiParam(value = "动作类型", example = "1")
|
|
|
|
|
public Integer valueType;
|
|
|
|
|
|
|
|
|
|
// 1=是,2=否
|
|
|
|
|
/**
|
|
|
|
|
* 1=是,2=否
|
|
|
|
|
*/
|
|
|
|
|
@Column(name = "TO_UPPER")
|
|
|
|
|
@ApiParam(value = "是否转为大写", example = "1")
|
|
|
|
|
public Integer toUpper;
|
|
|
|
@ -80,15 +76,6 @@ public class WmsActionLogDetails extends BaseBean {
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
public Long asId;
|
|
|
|
|
|
|
|
|
|
//get单独处理
|
|
|
|
|
public Long getAsId() {
|
|
|
|
|
if (asId != null) {
|
|
|
|
|
return asId.longValue();
|
|
|
|
|
} else {
|
|
|
|
|
return asId;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Column(name = "ALD_STATUS")
|
|
|
|
|
@ApiParam(value = "执行状态", example = "1")
|
|
|
|
|
public Integer aldStatus;
|
|
|
|
@ -109,14 +96,27 @@ public class WmsActionLogDetails extends BaseBean {
|
|
|
|
|
@ApiParam(value = "跳转按钮名称")
|
|
|
|
|
private String goToBtnName;
|
|
|
|
|
|
|
|
|
|
public WmsActionLogDetails() {
|
|
|
|
|
@Column(name = "PRE_SHOW")
|
|
|
|
|
@ApiParam(value = "是否预显示", example = "1")
|
|
|
|
|
private Integer preShow;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SHOW_AM_ID")
|
|
|
|
|
@ApiParam(value = "回显组件方法ID", example = "1")
|
|
|
|
|
private Long showAmId;
|
|
|
|
|
|
|
|
|
|
public Long getAsId() {
|
|
|
|
|
if (asId != null) {
|
|
|
|
|
return asId.longValue();
|
|
|
|
|
} else {
|
|
|
|
|
return asId;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public WmsActionLogDetails(Long amId,String createUser, Long id, Integer seq) {
|
|
|
|
|
this.asId = amId;
|
|
|
|
|
this.createUser = createUser;
|
|
|
|
|
this.id = id;
|
|
|
|
|
this.seq = seq;
|
|
|
|
|
public Long getAlId() {
|
|
|
|
|
if (alId != null) {
|
|
|
|
|
return alId.longValue();
|
|
|
|
|
} else {
|
|
|
|
|
return alId;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|