2024-05-29 17:58:57 +07:00
|
|
|
interface FrmDataGroup {
|
|
|
|
|
posTypeName: string;
|
|
|
|
|
posTypeShortName: string;
|
|
|
|
|
posTypeRank: number | null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface FormDataLevel {
|
2026-02-24 16:25:03 +07:00
|
|
|
posLevelName: string;
|
2024-05-29 17:58:57 +07:00
|
|
|
posTypeName: string | null;
|
|
|
|
|
posLevelAuthority: string;
|
2026-02-24 16:25:03 +07:00
|
|
|
posLevelRank: number | null;
|
2024-05-29 17:58:57 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type { FrmDataGroup, FormDataLevel };
|