2024-03-14 13:25:35 +07:00
|
|
|
interface FrmDataGroup {
|
|
|
|
|
posTypeName: string;
|
|
|
|
|
posTypeShortName: string;
|
|
|
|
|
posTypeRank: number | null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface FormDataLevel {
|
|
|
|
|
posLevelName: number | null;
|
2024-03-15 12:05:56 +07:00
|
|
|
posTypeName: string | null;
|
2024-03-14 15:45:37 +07:00
|
|
|
posLevelAuthority: string;
|
2024-03-14 13:25:35 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type { FrmDataGroup, FormDataLevel };
|