fixing column บรรจุ แต่งตั้ง ย้าย

This commit is contained in:
Warunee Tamkoo 2024-05-24 14:58:40 +07:00
parent bb2d03e499
commit 9cde68ab4f
74 changed files with 620 additions and 626 deletions

View file

@ -221,6 +221,16 @@ interface DataProfile {
child3ShortName: string | null;
child4: string | null;
child4ShortName: string | null;
child1Old?: string | null;
child1ShortNameOld?: string | null;
child2Old?: string | null;
child2ShortNameOld?: string | null;
child3Old?: string | null;
child3ShortNameOld?: string | null;
child4Old?: string | null;
child4ShortNameOld?: string | null;
createdAt: string | Date;
dateEnd: string | Date;
dateStart: string | Date;
@ -231,14 +241,19 @@ interface DataProfile {
organization: string;
organizationPositionOld: string;
posLevelName: string;
posLevelNameOld?: string;
posMasterNo: number | null;
posTypeName: string;
posTypeNameOld?: string;
position: string;
positionOld?: string;
prefix: string;
profileId: string;
reason: string;
root: string;
rootShortName: string | null;
rootOld?: string;
rootShortNameOld?: string | null;
status: string;
}
export type {

View file

@ -10,7 +10,7 @@ interface ResponseData {
organizationPositionOld: string;
posNo: string;
position: string;
positionLevel: string;
positionLevel?: string;
positionLevelOld: string;
positionNumberOld: string;
positionTypeOld: string;
@ -20,6 +20,9 @@ interface ResponseData {
status: string;
fullname: string;
statustext: string;
positionOld?: string;
posTypeNameOld?: string;
posLevelNameOld?: string;
}
interface TypeFile {
@ -44,9 +47,8 @@ interface ResponseDataDetail {
fullname: string;
}
interface rowFile {
no: number
fileName: string
pathName: string
no: number;
fileName: string;
pathName: string;
}
export type { ResponseData, ResponseDataDetail, TypeFile ,rowFile};
export type { ResponseData, ResponseDataDetail, TypeFile, rowFile };