ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.vci.client.portal.UI.v3.comptdesign.compt;
 
import com.vci.client.portal.UI.v3.comptdesign.UIComptDesignDialog;
import com.vci.common.portal.enums.PortalVIType;
 
 
/**
 * 表单组件定义面板
 * 
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2016</p>
 * <p>Company: VCI</p>
 * @author xiongchao
 * @time 2017-2-22
 * @version 1.0
 */
public class FormComptPanel extends TableComptPanel{
 
    /**
     * 
     */
    private static final long serialVersionUID = -6409284954799995092L;
    
    public FormComptPanel(UIComptDesignDialog ownedUIComptDesignDialog){
        super(ownedUIComptDesignDialog);
    }
    
    /**
     * 返回可以选择的
     */
    protected PortalVIType getPortalVIType(){
        return PortalVIType.Form;
    }
}