对接友情链接

This commit is contained in:
linxd
2025-06-30 19:48:57 +08:00
parent 60473ed8ae
commit 6605cc8862
6 changed files with 56 additions and 10 deletions

View File

@ -341,4 +341,31 @@ declare namespace API {
updateTime: string;
[property: string]: any;
}
export type CoscoPortalsLinksClassification = {
id: string;
name: string;
nameEn: string;
links: CoscoPortalsLinks[];
}[]
export type CoscoPortalsLinks = {
basePageRequest: null;
classificationId: string;
createBy: string;
createDate: null;
createTime: string;
delFlag: string;
deleteFlag: null;
id: string;
lastUpdateTime: null;
name: string;
nameEn: string;
orderBy: string;
remark: null;
status: string;
tenantId: null;
tenantName: null;
thumbnail: string;
url: string;
}
}