system-config.ts 271 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 export interface SystemConfig { id: number; parent_id: number; name: string; content: string; remark: string; status: 1 | 0; weight: number; identifier: string; children?: SystemConfig[]; expand: { type: string; [key: string]: unknown; }; }