declare interface GETProjectGetProjectByCodeResponseType { code: number; desc: string; message: string; data: Data; timestamp: string; } interface Data { projectId: string; tenant: string; projectName: string; projectCode: string; status: string; description: string; createdBy: string; createdTime: string; updatedBy: string; updatedTime: string; editorId?: any; createSource?: any; editorVerId?: any; applicationScenarios: string; permissionServices: string; externalSystemCode: string; tenantIds?: any; editorDetail: EditorDetail; } interface EditorDetail { editor: Editor; render: string; materialLibs?: any; } interface Editor { verId: string; name: string; version: string; status: string; }