เพิ่มเช็ค

This commit is contained in:
setthawutttty 2024-10-30 15:20:47 +07:00
parent 072d6087f7
commit be5a4bcd53
2 changed files with 23 additions and 6 deletions

View file

@ -23,6 +23,21 @@ interface FormDataDetail {
isBangkok: string | null; //คำสั่งสำนักปลัดกรุงเทพมหานคร
}
interface FormCommandList {
id: string;
status: string;
commandTypeName: string;
commandNo: string;
commandYear: Date | null;
detailHeader: string;
detailBody: string;
detailFooter: string;
issue: string | null;
commandAffectDate: Date | null;
commandExcecuteDate: Date | null;
commandSysId: string;
isAttachment: boolean;
}
interface ListCommandSalaryType {
id: string;
createdAt: Date | null;
@ -54,4 +69,5 @@ export type {
FormDataDetail,
ListCommandSalaryType,
PersonInfo,
FormCommandList
};