system-config.ts 173 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 export interface SystemConfig { id: number; parent_id: number; name: string; content: string; remark: string; identifier: string; children?: SystemConfig[]; }