29 lines
538 B
TypeScript
29 lines
538 B
TypeScript
|
|
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;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { ObjectGroupRef, ObjectLevelRef, ObjectPosRef, FormQuery };
|