ui ส่งไปออกคำสั่ง

This commit is contained in:
STW_TTTY\stwtt 2024-09-25 10:17:33 +07:00
parent 0247619d87
commit 9b5f8b7af8
6 changed files with 509 additions and 21 deletions

View file

@ -291,6 +291,58 @@ interface DataEducation {
graduation: string;
}
interface PersonData {
personalId: string;
avatar: string;
name: string;
fullName: string;
idCard: string;
examNumber: number;
root: string;
rootId: string;
rootShortName: string;
child1: string;
child1Id: string;
child1ShortName: string;
child2: string | null;
child2Id: string | null;
child2ShortName: string | null;
child3: string | null;
child3Id: string | null;
child3ShortName: string | null;
child4: string | null;
child4Id: string | null;
child4ShortName: string | null;
node: number;
nodeName: string;
nodeId: string;
nodeShortName: string;
orgRevisionId: string;
positionId: string;
posMasterNo: number;
positionName: string;
positionField: string;
posTypeId: string;
posTypeName: string;
posLevelId: string;
posLevelName: string;
positionCandidate: string;
positionCandidateId: string;
reportingDate: string;
bmaOfficer: string;
statusId: string;
draft: string;
typeCommand: string;
posTypeCandidateId: string | null;
posLevelCandidateId: string | null;
posmasterId: string;
statusNameCheck: string;
deferment: boolean;
statusName: string;
organizationName: string;
}
export type {
DataOption,
DataOptionInsignia,
@ -316,6 +368,7 @@ export type {
ListDataText,
ListMenu,
DataEducation,
PersonData
};
export { AddressDataDefualt, FamilyDataDefualt };