fix CurrentPage ==> รายการตัวชี้วัดตามแผนฯ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-07-15 11:38:32 +07:00
parent 5d97f44ee3
commit 6db8040e90
3 changed files with 60 additions and 38 deletions

View file

@ -37,6 +37,7 @@ interface IndicatorType {
}
interface OrgTreeNode {
orgTreeDnaId: string;
orgTreeId: string;
orgRootId: string;
orgLevel: number;
@ -107,7 +108,7 @@ interface CompetencySumary {
value: string;
label: string;
color: string;
total?:string
total?: string;
}
interface Position {
@ -130,10 +131,18 @@ interface ListLinkGroup {
capacitys: Capacity[];
}
interface SizeType{
width:number
height:number
interface SizeType {
width: number;
height: number;
}
interface FormDataNodeData {
round: string;
nodeId: string | null;
node: number | null;
keyword: string;
}
export type {
Pagination,
DataOption,
@ -149,5 +158,6 @@ export type {
ListLinkGroup,
Position,
CompetencySumary,
SizeType
SizeType,
FormDataNodeData
};