export interface AttachmentFile {
    name: string;
    fileId: string;
    type?: string;
    size?: number;
    fileCode?: string;
    appId?: string;
    status?: string;
}
export interface AttachmentsListProps {
    value?: AttachmentFile[];
    onChange?: (value: AttachmentFile[]) => void;
    /**
     * 当前属性编辑控件所属的组件数据
     */
    selectedComp?: any;
}
export interface ChooseAttachmentsProps {
    label: string;
    name: string;
    /**
     * 当前属性编辑控件所属的组件数据
     */
    selectedComp?: any;
}
