Refactoring code module 07_insignia
This commit is contained in:
parent
208d867dfd
commit
6fb6024f53
31 changed files with 1158 additions and 2444 deletions
|
|
@ -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};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue