ui จำนวนและรายชื่อที่กระทำความผิดทางวินัย

This commit is contained in:
setthawutttty 2024-12-12 15:02:02 +07:00
parent 1067e95974
commit eb3b4781f5
4 changed files with 707 additions and 0 deletions

View file

@ -102,6 +102,26 @@ interface PersonType {
organization: string;
}
interface PosLevel {
id: string;
posLevelName: string;
posLevelRank: number;
posLevelAuthority: string;
createdAt: Date | null;
lastUpdatedAt: Date | null;
lastUpdateFullName: string;
}
interface PosType {
id: string;
posTypeName: string;
posTypeRank: number;
posLevels: PosLevel[];
createdAt: Date | null;
lastUpdatedAt: Date | null;
lastUpdateFullName: string;
}
export type {
DataOption,
InvestigatefactsDataRowType,
@ -114,4 +134,6 @@ export type {
DataOptionYear,
HistoryResultCommand,
DataPerson,
PosLevel,
PosType,
};