ทะเบียนประวัติ: เครื่องราชฯ

This commit is contained in:
puriphatt 2024-03-13 18:05:32 +07:00
parent 199e91134f
commit e83b1671d9
4 changed files with 1239 additions and 12 deletions

View file

@ -0,0 +1,40 @@
interface DataProps {
row: RequestItemsObject;
rowIndex: number;
}
//ข้อมูล
interface RequestItemsObject {
id: string;
insigniaType: string;
insignia: string;
insigniaId: string;
year: number;
no: string;
issue: string;
volumeNo: string;
volume: string;
section: string;
page: string;
receiveDate: Date;
dateAnnounce: Date|string|null;
refCommandNo: string;
refCommandDate: Date | null|string;
createdFullName: string;
createdAt: Date;
}
//columns
interface Columns {
[index: number]: {
name: String;
align: String;
label: String;
sortable: Boolean;
field: String;
headerStyle: String;
style: String;
};
}
export type { RequestItemsObject, Columns, DataProps };