ส่งหนังสือเวียน

This commit is contained in:
setthawutttty 2023-09-01 17:51:21 +07:00
parent 64152f72d9
commit e39809b0d0
3 changed files with 77 additions and 50 deletions

View file

@ -0,0 +1,27 @@
interface requestSendNoti {
profileId: string;
isSendMail: boolean;
isSendInbox: boolean;
isSendNotification: boolean;
}
interface DataCopyOrder {
id:string;
personalId: string;
name: string;
idCard: string;
position: string;
unit: string;
send: string;
mutiselect: number[];
}
interface ResponseOrganiz {
firstName: string;
idCard: string;
lastName: string;
name: string;
position: string;
prefixId: string;
profileId: string;
unit: string;
}
export type { requestSendNoti,DataCopyOrder,ResponseOrganiz };