import { IPSDEFormGroupPanel } from './ipsdeform-group-panel'; /** * * @export * @interface IPSDEFormFormPart */ export interface IPSDEFormFormPart extends IPSDEFormGroupPanel { /** * 表单部件类型 * @description 值模式 [表单部件类型] {FORMRF:表单引用、 DYNASYS:动态系统 } * @type {( string | 'FORMRF' | 'DYNASYS')} */ formPartType: string | 'FORMRF' | 'DYNASYS'; }