ปรับ code ออกคำสั่งเลื่อนเงินเดือน/ค่าจ้าง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-05-20 15:33:28 +07:00
parent 3219ccf902
commit 837d704709
3 changed files with 132 additions and 76 deletions

View file

@ -0,0 +1,41 @@
interface ResYear {
id: number;
name: number;
}
interface ResType {
category: string;
commandCode: string;
createdAt: string;
createdFullName: string;
createdUserId: string;
id: string;
lastUpdateFullName: string;
lastUpdateUserId: string;
lastUpdatedAt: null | string | Date;
name: string;
}
interface ResListOrder {
caseFault: string;
faultLevel: string;
fiscalYear: string;
fullName: string;
orderBy: string;
orderById: string;
orderByOrganization: string;
orderDate: string;
orderId: string;
orderName: string;
orderNo: string;
orderStatusName: string;
orderStatusValue: string;
orderTypeName: string;
orderTypeValue: string;
refRaw: string;
result: string;
signatoryBy: string;
signatoryPosition: string;
}
export type { ResYear, ResType, ResListOrder };