import { AbstractEntity } from '../abstract-entity/abstract-entity'; import { Question } from './question'; /** * 试题节点 */ export declare class QuestionNode extends AbstractEntity { /** * 父节点id */ parentId: number; /** * 创建人 */ createAccountId: number; /** * 更新人 */ updateAccountId: number; /** * 资源id */ resId: string; /** * 是否文件夹 */ folder: boolean; /** * 试题 */ question: Question; constructor(); }