|
|
|
@ -49,17 +49,17 @@ public class WmsActionGroup extends BaseBean {
|
|
|
|
|
@AnnoOutputColumn
|
|
|
|
|
private String agDescC;
|
|
|
|
|
|
|
|
|
|
@Column(name = "INIT_AM_ID", columnDefinition = "bigint(20) default 0")
|
|
|
|
|
@Column(name = "INIT_AM_ID", columnDefinition = "bigint default 0")
|
|
|
|
|
@ApiParam(value = "初始化组件编号", example = "0")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long initAmId;
|
|
|
|
|
|
|
|
|
|
@Column(name = "DETAILS_AM_ID", columnDefinition = "bigint(20) default 0")
|
|
|
|
|
@Column(name = "DETAILS_AM_ID", columnDefinition = "bigint default 0")
|
|
|
|
|
@ApiParam(value = "明细处理组件编号", example = "0")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long detailsAmId;
|
|
|
|
|
|
|
|
|
|
@Column(name = "END_AM_ID", columnDefinition = "bigint(20) default 0")
|
|
|
|
|
@Column(name = "END_AM_ID", columnDefinition = "bigint default 0")
|
|
|
|
|
@ApiParam(value = "结束组件编号", example = "0")
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long endAmId;
|
|
|
|
@ -82,7 +82,7 @@ public class WmsActionGroup extends BaseBean {
|
|
|
|
|
private Integer isAutoCommit;
|
|
|
|
|
|
|
|
|
|
@Lob
|
|
|
|
|
@Column(name = "POSITION")
|
|
|
|
|
@Column(name = "POSITION", columnDefinition = "TEXT")
|
|
|
|
|
@ApiParam(value = "GOJS位置")
|
|
|
|
|
private String position;
|
|
|
|
|
|
|
|
|
|