ui จำนวนและรายชื่อที่กระทำความผิดทางวินัย
This commit is contained in:
parent
1067e95974
commit
eb3b4781f5
4 changed files with 707 additions and 0 deletions
|
|
@ -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,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue