|
|
|
@ -11,6 +11,7 @@ import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description : 工作中心线边库区关系
|
|
|
|
@ -35,4 +36,12 @@ public class WmsWorkCenterZone extends BaseBean {
|
|
|
|
|
@Column(name = "ZONE_NO")
|
|
|
|
|
@ApiParam(value = "线边库区")
|
|
|
|
|
private String zoneNo;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("工作中心名称")
|
|
|
|
|
private String workCenterName;
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
@ApiParam("线边库区名称")
|
|
|
|
|
private String zoneName;
|
|
|
|
|
}
|
|
|
|
|