perf: add helpLink for each page

This commit is contained in:
Junyan Qin
2025-05-11 16:35:59 +08:00
parent 37343bde66
commit cc2d8588c4
6 changed files with 37 additions and 4 deletions
@@ -6,6 +6,7 @@ export interface ISidebarChildVO {
name: string;
route: string;
description: string;
helpLink: string;
}
export class SidebarChildVO {
@@ -14,6 +15,7 @@ export class SidebarChildVO {
name: string;
route: string;
description: string;
helpLink: string;
constructor(props: ISidebarChildVO) {
this.id = props.id;
@@ -21,6 +23,7 @@ export class SidebarChildVO {
this.name = props.name;
this.route = props.route;
this.description = props.description;
this.helpLink = props.helpLink;
}
}