ludc
2024-08-28 1fa18d4c61c6facb52fe09168dcbf6b46de4aafe
Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/pagemodel/PortalVIVO.java
@@ -1,5 +1,9 @@
package com.vci.pagemodel;
import com.vci.common.portal.enums.PortalVIType;
import com.vci.constant.EnumIdConstant;
import com.vci.starter.web.annotation.VciUseEnum;
/**
 *
 * 表单显示对象
@@ -18,6 +22,10 @@
     */
    private short typeFlag;
    /**
     * 业务类型显示值
     */
    private  String typeFlagText;
    /**
     * 类型名
     */
    private String typeName;
@@ -25,10 +33,15 @@
     * 视图名
     */
    private String viName;
    /**
     * 视图类型: 输入表单或分页列表
     */
    private short viType;
    /**
     *表单类型
     */
    private String viTypeText;
    /**
     * 定义详情
     */
@@ -82,14 +95,32 @@
        this.prm = prm;
    }
    public String getTypeFlagText() {
        return typeFlagText;
    }
    public void setTypeFlagText(String typeFlagText) {
        this.typeFlagText = typeFlagText;
    }
    public String getViTypeText() {
        return viTypeText;
    }
    public void setViTypeText(String viTypeText) {
        this.viTypeText = viTypeText;
    }
    @Override
    public String toString() {
        return "PortalVIVO{" +
                "id='" + id + '\'' +
                ", typeFlag=" + typeFlag +
                ", typeFlagText='" + typeFlagText + '\'' +
                ", typeName='" + typeName + '\'' +
                ", viName='" + viName + '\'' +
                ", viType=" + viType +
                ", viTypeText='" + viTypeText + '\'' +
                ", prm=" + prm +
                '}';
    }