2024-09-12 17:11:00 +07:00
|
|
|
interface FormQuery {
|
|
|
|
|
page: number;
|
|
|
|
|
pageSize: number;
|
|
|
|
|
year: number;
|
|
|
|
|
keyword: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface FormCommand {
|
|
|
|
|
commandYear: number;
|
|
|
|
|
commandNo: string;
|
|
|
|
|
commandTypeId?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface FormDataDetail {
|
2024-09-24 10:50:42 +07:00
|
|
|
id?: string;
|
|
|
|
|
status?: string;
|
2024-09-12 17:11:00 +07:00
|
|
|
commandNo: string;
|
|
|
|
|
commandYear: number | null;
|
|
|
|
|
detailHeader: string;
|
|
|
|
|
detailBody: string;
|
|
|
|
|
detailFooter: string;
|
|
|
|
|
issue: string | null;
|
2024-09-23 17:00:32 +07:00
|
|
|
commandAffectDate: Date | null;
|
|
|
|
|
commandExcecuteDate: Date | null;
|
2024-09-24 10:50:42 +07:00
|
|
|
commandSysId?: string;
|
|
|
|
|
commandTypeName?: string;
|
2024-10-09 13:56:53 +07:00
|
|
|
isBangkok?: string | null;
|
2024-10-09 13:04:58 +07:00
|
|
|
isAttachment: boolean;
|
2024-09-12 17:11:00 +07:00
|
|
|
}
|
|
|
|
|
|
2024-09-24 10:50:42 +07:00
|
|
|
interface ListCommandSalaryType {
|
|
|
|
|
id: string;
|
2024-09-25 17:49:50 +07:00
|
|
|
createdAt: Date | null;
|
|
|
|
|
lastUpdatedAt: Date | null;
|
2024-09-24 10:50:42 +07:00
|
|
|
createdFullName: string;
|
|
|
|
|
lastUpdateFullName: string;
|
|
|
|
|
name: string;
|
|
|
|
|
commandSysId: string;
|
|
|
|
|
}
|
2024-09-25 17:49:50 +07:00
|
|
|
|
|
|
|
|
interface PersonInfo {
|
|
|
|
|
id: string;
|
|
|
|
|
citizenId: string;
|
|
|
|
|
prefix: string;
|
|
|
|
|
firstName: string;
|
|
|
|
|
lastName: string;
|
|
|
|
|
profileId: string;
|
|
|
|
|
order: number;
|
|
|
|
|
remarkVertical: string | null;
|
|
|
|
|
remarkHorizontal: string | null;
|
|
|
|
|
amount: number;
|
|
|
|
|
positionSalaryAmount: number;
|
2024-09-25 17:50:33 +07:00
|
|
|
mouthSalaryAmount: number;
|
2024-09-25 17:49:50 +07:00
|
|
|
}
|
|
|
|
|
|
2024-09-25 17:50:33 +07:00
|
|
|
export type {
|
|
|
|
|
FormQuery,
|
|
|
|
|
FormCommand,
|
|
|
|
|
FormDataDetail,
|
|
|
|
|
ListCommandSalaryType,
|
|
|
|
|
PersonInfo,
|
|
|
|
|
};
|