Refactoring code module 07_insignia

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-09-25 16:44:07 +07:00
parent 208d867dfd
commit 6fb6024f53
31 changed files with 1158 additions and 2444 deletions

View file

@ -10,4 +10,38 @@ interface ResponseObject {
note: string;
}
export type { ResponseObject };
interface ResponsePeriod {
period_amount: number;
period_doc: string;
period_end: string;
period_id: string;
period_isActive: boolean;
period_name: string;
period_round: number;
period_start: string;
period_status: string;
period_year: number;
}
interface ResponseNoSend {
orgId: string;
orgName: string;
}
interface ResponseRound {
id: string;
name: string;
year: number;
}
interface ResponseAllocate {
allocate: number;
createdAt: string;
id: string;
lastUpdatedAt: string;
organizationOrganization: string;
remain: number;
total: number;
}
export type { ResponseObject, ResponsePeriod, ResponseNoSend, ResponseRound ,ResponseAllocate};