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;
|
}
|
}
|