|
|
|
@ -11,6 +11,8 @@ import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description :存储区
|
|
|
|
@ -45,12 +47,12 @@ public class WmsZones extends BaseBean {
|
|
|
|
|
private String zoneName;
|
|
|
|
|
|
|
|
|
|
@Column(name = "PARENT_ZONE_NO")
|
|
|
|
|
@ApiParam(value = "父级存储区")
|
|
|
|
|
@ApiParam(value = "父级存储区", example ="1")
|
|
|
|
|
private String parentZoneNo;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_SON_NODE")
|
|
|
|
|
@ApiParam(value = "是否子节点")
|
|
|
|
|
private String isSonNode;
|
|
|
|
|
private Integer isSonNode;
|
|
|
|
|
|
|
|
|
|
@Column(name = "IS_PM")
|
|
|
|
|
@ApiParam(value = "零件级管控" , example = "2")
|
|
|
|
@ -84,4 +86,7 @@ public class WmsZones extends BaseBean {
|
|
|
|
|
@ApiParam(value = "校验先进先出" , example = "1")
|
|
|
|
|
private Integer checkFifo;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam(value ="子存储区列表")
|
|
|
|
|
private List<WmsZones> childList;
|
|
|
|
|
}
|
|
|
|
|