2024-05-29 17:58:57 +07:00
|
|
|
interface ObjectGroupRef {
|
|
|
|
|
posTypeName: object | null;
|
|
|
|
|
posTypeShortName: object | null;
|
|
|
|
|
posTypeRank: object | null;
|
|
|
|
|
[key: string]: any;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface ObjectLevelRef {
|
|
|
|
|
posLevelName: object | null;
|
|
|
|
|
posLevelAuthority: object | null;
|
|
|
|
|
|
|
|
|
|
[key: string]: any;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface ObjectPosRef {
|
|
|
|
|
posName: object | null;
|
|
|
|
|
posTypeName: object | null;
|
|
|
|
|
posLevelName: object | null;
|
|
|
|
|
|
|
|
|
|
[key: string]: any;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface FormQuery {
|
|
|
|
|
type: string;
|
|
|
|
|
keyword: string;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-05 16:44:08 +07:00
|
|
|
interface DataGroup {
|
|
|
|
|
id: string;
|
|
|
|
|
posLevelAuthority: string;
|
|
|
|
|
posLevelName: number;
|
|
|
|
|
posLevelRank: number;
|
|
|
|
|
posTypeName: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type {
|
|
|
|
|
ObjectGroupRef,
|
|
|
|
|
ObjectLevelRef,
|
|
|
|
|
ObjectPosRef,
|
|
|
|
|
FormQuery,
|
|
|
|
|
DataGroup,
|
|
|
|
|
};
|