package com.vci.pagemodel;
|
|
import com.vci.starter.web.pagemodel.BaseModelVO;
|
|
import java.util.List;
|
|
/**
|
* ui上下文的显示对象
|
* @author weidy
|
* @date 2021-2-15
|
*/
|
public class UIContentVO extends BaseModelVO {
|
/**
|
* 序列化
|
*/
|
private static final long serialVersionUID = 955817523919691774L;
|
|
/**
|
* 上下文编号
|
*/
|
private String id;
|
|
/**
|
* 上下文名称
|
*/
|
private String name;
|
|
/**
|
* 业务类型英文名称
|
*/
|
private String btmTypeId;
|
|
/**
|
* 是否为链接类型
|
*/
|
private boolean linkTypeFlag;
|
|
/**
|
* 链接类型的英文名称
|
*/
|
private String linkTypeId;
|
|
/**
|
* 西区的布局内容
|
*/
|
private List<UILayoutVO> westAreas;
|
|
/**
|
* 北区的布局内容
|
*/
|
private List<UILayoutVO> northAreas;
|
|
/**
|
* 中心区的布局内容
|
*/
|
private List<UILayoutVO> centerAreas;
|
|
/**
|
* 南区的布局内容
|
*/
|
private List<UILayoutVO> southAreas;
|
|
/**
|
* 包含的布局的信息
|
*/
|
private List<UILayoutVO> eastAreas;
|
|
@Override
|
public String getId() {
|
return id;
|
}
|
|
@Override
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
@Override
|
public String getName() {
|
return name;
|
}
|
|
@Override
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getBtmTypeId() {
|
return btmTypeId;
|
}
|
|
public void setBtmTypeId(String btmTypeId) {
|
this.btmTypeId = btmTypeId;
|
}
|
|
public boolean isLinkTypeFlag() {
|
return linkTypeFlag;
|
}
|
|
public void setLinkTypeFlag(boolean linkTypeFlag) {
|
this.linkTypeFlag = linkTypeFlag;
|
}
|
|
public String getLinkTypeId() {
|
return linkTypeId;
|
}
|
|
public void setLinkTypeId(String linkTypeId) {
|
this.linkTypeId = linkTypeId;
|
}
|
|
public List<UILayoutVO> getWestAreas() {
|
return westAreas;
|
}
|
|
public void setWestAreas(List<UILayoutVO> westAreas) {
|
this.westAreas = westAreas;
|
}
|
|
public List<UILayoutVO> getNorthAreas() {
|
return northAreas;
|
}
|
|
public void setNorthAreas(List<UILayoutVO> northAreas) {
|
this.northAreas = northAreas;
|
}
|
|
public List<UILayoutVO> getCenterAreas() {
|
return centerAreas;
|
}
|
|
public void setCenterAreas(List<UILayoutVO> centerAreas) {
|
this.centerAreas = centerAreas;
|
}
|
|
public List<UILayoutVO> getSouthAreas() {
|
return southAreas;
|
}
|
|
public void setSouthAreas(List<UILayoutVO> southAreas) {
|
this.southAreas = southAreas;
|
}
|
|
public List<UILayoutVO> getEastAreas() {
|
return eastAreas;
|
}
|
|
public void setEastAreas(List<UILayoutVO> eastAreas) {
|
this.eastAreas = eastAreas;
|
}
|
|
@Override
|
public String toString() {
|
return "UIContentVO{" +
|
"id='" + id + '\'' +
|
", name='" + name + '\'' +
|
", btmTypeId='" + btmTypeId + '\'' +
|
", linkTypeFlag=" + linkTypeFlag +
|
", linkTypeId='" + linkTypeId + '\'' +
|
", westAreas=" + westAreas +
|
", northAreas=" + northAreas +
|
", centerAreas=" + centerAreas +
|
", southAreas=" + southAreas +
|
", eastAreas=" + eastAreas +
|
"} " + super.toString();
|
}
|
}
|