clone code
This commit is contained in:
parent
c9597d1e38
commit
d57bcd1719
362 changed files with 104804 additions and 0 deletions
|
|
@ -0,0 +1,38 @@
|
|||
//ข้อมูลประวัติแก้ไข
|
||||
interface RequestItemsPublishHistoryObject {
|
||||
id: string;
|
||||
items: RequestItemsHistoryObject[];
|
||||
publishedDate: string;
|
||||
}
|
||||
|
||||
//ข้อมูล
|
||||
interface RequestItemsHistoryObject {
|
||||
createdAt?: Date;
|
||||
createdFullName: String;
|
||||
createdUserId: String;
|
||||
id: String;
|
||||
isActive: Boolean;
|
||||
lastUpdateFullName: String;
|
||||
lastUpdateUserId: String;
|
||||
lastUpdatedAt?: Date;
|
||||
name: string;
|
||||
}
|
||||
|
||||
//columns
|
||||
interface Columns {
|
||||
[index: number]: {
|
||||
name: String;
|
||||
align: String;
|
||||
label: String;
|
||||
sortable: Boolean;
|
||||
field: String;
|
||||
headerStyle: String;
|
||||
style: String;
|
||||
};
|
||||
}
|
||||
|
||||
export type {
|
||||
RequestItemsHistoryObject,
|
||||
RequestItemsPublishHistoryObject,
|
||||
Columns,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue