ปรับ 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

@ -4,8 +4,8 @@ interface DataOption {
disable?: boolean;
}
interface DataOption1 {
id: string | null;
name: string | null;
id: string;
name: string;
disable?: boolean;
}
interface DataOptionInsignia {
@ -196,28 +196,27 @@ interface Assign {
updatedAt: Date;
}
interface OrderResult {
fiscalYear: string
orderBy: string
orderById: string
orderByOrganization: string
orderDate: Date
orderId: string
orderName: string
orderNo: string
orderStatusName: string
orderStatusValue: string
orderTypeName: string
orderTypeValue: string
signatoryBy: string
signatoryPosition: string
fiscalYear: string;
orderBy: string;
orderById: string;
orderByOrganization: string;
orderDate: Date;
orderId: string;
orderName: string;
orderNo: string;
orderStatusName: string;
orderStatusValue: string;
orderTypeName: string;
orderTypeValue: string;
signatoryBy: string;
signatoryPosition: string;
}
interface history {
citizenId: string,
fullName: string,
id: string
posNo: string,
position: string
citizenId: string;
fullName: string;
id: string;
posNo: string;
position: string;
}
interface ColumnData {
name: string;
@ -240,16 +239,16 @@ interface DataOptionInsigniaType {
name: string;
}
interface OrederResult {
category?: string
commandCode: string
createdAt?: Date
createdFullName?: string
createdUserId?: string
id?: string
lastUpdateFullName?: string
lastUpdateUserId?: string
lastUpdatedAt?: string
name?: string
category?: string;
commandCode: string;
createdAt?: Date;
createdFullName?: string;
createdUserId?: string;
id?: string;
lastUpdateFullName?: string;
lastUpdateUserId?: string;
lastUpdatedAt?: string;
name?: string;
}
export type {
DataOption,
@ -273,7 +272,7 @@ export type {
history,
ColumnData,
DataOptionInsigniaType,
OrederResult
OrederResult,
};
export { AddressDataDefualt, FamilyDataDefualt };