24 lines
447 B
TypeScript
24 lines
447 B
TypeScript
interface HistoryPos {
|
|
citizenId: string;
|
|
date: string | Date;
|
|
fullName: string;
|
|
id: string;
|
|
posNo: string;
|
|
position: string;
|
|
positionName?: string;
|
|
}
|
|
|
|
interface Position {
|
|
createdAt: string;
|
|
createdFullName: string;
|
|
createdUserId: string;
|
|
id: string;
|
|
isActive: boolean;
|
|
lastUpdateFullName: string;
|
|
lastUpdateUserId: "";
|
|
lastUpdatedAt: string;
|
|
name: string;
|
|
note: string;
|
|
}
|
|
|
|
export type { HistoryPos, Position };
|