ปรับ fe sprint2

This commit is contained in:
Kittapath 2023-06-19 15:50:50 +07:00
parent 8576f3c387
commit 0d6ff7be0a
83 changed files with 6932 additions and 2571 deletions

View file

@ -1,9 +1,9 @@
//ข้อมูล
interface RequestPeriodExam {
announcementDate: string;
announcementEndDate: string;
announcementStartDate: string;
examDate: string;
announcementDate: string | null;
announcementEndDate: string | null;
announcementStartDate: string | null;
examDate: string | null;
announcementExam: boolean;
bankExam: RequestPayment[];
checkDisability: boolean;
@ -18,51 +18,51 @@ interface RequestPeriodExam {
organizationCodeName: string;
organizationId: string;
organizationName: string;
paymentEndDate: string;
paymentEndDate: string | null;
paymentKrungThai: string;
paymentStartDate: string;
paymentStartDate: string | null;
positionExam: RequestPosition[];
registerEndDate: string;
registerStartDate: string;
registerEndDate: string | null;
registerStartDate: string | null;
round: number;
year: number;
category: string;
}
interface RequestPeriodCompete {
announcementEndDate: string;
announcementStartDate: string;
examDate: string;
announcementEndDate: string | null;
announcementStartDate: string | null;
examDate: string | null;
detail: string;
fee: number;
id: string;
name: string;
note: string;
paymentEndDate: string;
paymentStartDate: string;
registerEndDate: string;
registerStartDate: string;
paymentEndDate: string | null;
paymentStartDate: string | null;
registerEndDate: string | null;
registerStartDate: string | null;
order: number;
year: number;
announcementDate: string;
announcementDate: string | null;
}
interface RequestPeriodDisable {
announcementEndDate: string;
announcementStartDate: string;
examDate: string;
announcementEndDate: string | null;
announcementStartDate: string | null;
examDate: string | null;
detail: string;
fee: number;
id: string;
name: string;
note: string;
paymentEndDate: string;
paymentStartDate: string;
registerEndDate: string;
registerStartDate: string;
paymentEndDate: string | null;
paymentStartDate: string | null;
registerEndDate: string | null;
registerStartDate: string | null;
round: number;
year: number;
announcementDate: string;
announcementDate: string | null;
}
interface RequestPosition {
@ -71,6 +71,7 @@ interface RequestPosition {
positionName: string;
typeId: string;
typeName: string;
highDegree: Boolean;
}
interface RequestPayment {

View file

@ -21,11 +21,11 @@ interface ResponsePeriodExam {
round: number;
yearly: number;
fee: number;
dateAnnounce: Date;
dateAnnouncement: [Date, Date];
dateExam: Date;
dateRegister: [Date, Date];
datePayment: [Date, Date];
dateAnnounce: Date | null;
dateAnnouncement: [Date, Date] | null;
dateExam: Date | null;
dateRegister: [Date, Date] | null;
datePayment: [Date, Date] | null;
organizationName: {
id: string;
name: string;
@ -50,6 +50,7 @@ interface ResponsePosition {
id: string;
name: string;
};
highDegree: Boolean;
}
interface ResponsePayment {
id: string;