ออกคำสั่ง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-11-04 13:00:27 +07:00
parent 7c63c3c32c
commit 57f145784e
3 changed files with 187 additions and 73 deletions

View file

@ -71,10 +71,37 @@ interface DataFileOrder {
};
}
interface DataDirector {
actFullName: string;
citizenId: string;
firstName: string;
id: string;
isDirector: number;
lastName: string;
orgRootId: string;
posLevel: string;
posType: string;
position: string;
prefix: string;
}
interface DataAuthority {
id: string;
prefix: string;
firstName: string;
lastName: string;
position: string;
profileId: string;
comment: string;
isSignatory: boolean;
}
export type {
ResListCommand,
DataListCommand,
DataCommandType,
DataFileDownload,
DataFileOrder,
DataDirector,
DataAuthority,
};