ludc
2024-08-28 1fa18d4c61c6facb52fe09168dcbf6b46de4aafe
Source/plt-web/plt-web-parent/plt-web-api/src/main/java/com/vci/model/PortalVIDO.java
@@ -1,7 +1,9 @@
package com.vci.model;
import com.vci.constant.PortalVIEnumConstant;
import com.vci.starter.web.annotation.Transient;
import com.vci.starter.web.annotation.VciBtmType;
import com.vci.starter.web.annotation.VciUseEnum;
import com.vci.starter.web.constant.FrameWorkLcStatusConstant;
/**
@@ -21,7 +23,13 @@
    /**
     * 0: 业务类型; 1: 链接类型. 默认0
     */
    @VciUseEnum(value = PortalVIEnumConstant.PORTALVI_VI_FLAG,defaultValue = "0",showTextField = "typeFlagText")
    private short typeFlag;
    /**
     * 业务类型显示文本
     */
    private String typeFlagText;
    /**
     * 类型名
     */
@@ -33,7 +41,12 @@
    /**
     * 视图类型: 输入表单或分页列表
     */
    @VciUseEnum(value = PortalVIEnumConstant.PORTALVI_VI_TYPE,defaultValue = "0",showTextField = "viTypeText")
    private short viType;
    /**
     * 视图类型显示文本
     */
    private  String viTypeText;
    /**
     * 定义详情
     */
@@ -87,14 +100,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{" +
        return "PortalVIDO{" +
                "id='" + id + '\'' +
                ", typeFlag=" + typeFlag +
                ", typeFlagText='" + typeFlagText + '\'' +
                ", typeName='" + typeName + '\'' +
                ", viName='" + viName + '\'' +
                ", viType=" + viType +
                ", viTypeText='" + viTypeText + '\'' +
                ", prm='" + prm + '\'' +
                '}';
    }