no message

This commit is contained in:
setthawutttty 2023-07-05 10:00:36 +07:00
parent e344e5845e
commit dd6ae8c04d
5 changed files with 132 additions and 115 deletions

View file

@ -1,7 +1,7 @@
import type { zipCodeOption } from "../../components/PersonalDetail/profileType";
interface DataOption {
id: number | string;
name: string;
id: string|null;
name:string|null;
disable?: boolean;
}

View file

@ -1,13 +1,14 @@
// ข้อมูลรายการสอบแข่งขัน/คัดเลือก
interface FormPlacementMainData {
id: number;
name: string;
round: number;
year: number;
number: number;
placementType: number;
startDate: string;
endDate: string;
examRound: string;
examOrder: number;
fiscalYear: number;
numberOfCandidates: number;
examTypeValue:string;
examTypeName: string;
accountStartDate: string;
accountExpirationDate: string;
isExpired?: boolean;
}