no message

This commit is contained in:
setthawutttty 2023-07-10 09:03:56 +07:00
parent 2ff53b5fa6
commit 07976376bb
3 changed files with 82 additions and 38 deletions

View file

@ -1,10 +1,14 @@
import type { zipCodeOption } from "../../components/PersonalDetail/profileType";
interface DataOption {
id: number|null;
name:string|null;
disable?: boolean;
}
interface DataOption1 {
id: string|null;
name:string|null;
disable?: boolean;
}
interface DataOptionInsignia {
id: string;
name: string;
@ -61,6 +65,7 @@ export type {
AddressOps,
Pagination,
EduOps,
DataOption1,
InsigniaOps,
CheckboxItem,
};

View file

@ -1,6 +1,5 @@
interface TableName {
personalId: string;
profileID: string;
position: number;
fullName: string;
dateOfBirth: string;
@ -8,14 +7,20 @@ interface TableName {
ExamOrder: number;
unitId: string;
UnitGroup: string;
positionNumber:string;
positionPath:string;
Unit: string;
ReportingDate: string; //วันที่รายงานตัว
BMAOfficer: string;
Status: string;
reportingDate: string; //วันที่รายงานตัว
bmaOfficer: string;
statusId: string;
checkList: any;
address: string;
university: string;
degree: string;
disclaim: string;
profilePhoto:string;
organizationName:string;
organizationShortName:string;
major: string;
remark: string;
number: number;
@ -32,5 +37,18 @@ interface TableName {
examResult: string;
};
}
export type { TableName };
interface PartialTableName {
personalId: string;
fullName: string;
idCard: string;
profilePhoto: string;
organizationName: string;
organizationShortName: string;
positionNumber: string;
positionPath: string;
reportingDate: string;
bmaOfficer: string;
statusId: string;
disclaim: string;
}
export type { TableName ,PartialTableName};