clone code
This commit is contained in:
parent
c9597d1e38
commit
d57bcd1719
362 changed files with 104804 additions and 0 deletions
77
src/modules/01_metadata/interface/request/Calendar.ts
Normal file
77
src/modules/01_metadata/interface/request/Calendar.ts
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
interface DataNumObject {
|
||||
id: number;
|
||||
count: number;
|
||||
name: string;
|
||||
color: string;
|
||||
}
|
||||
|
||||
interface DataDateAddObject {
|
||||
year: number;
|
||||
holidayDate: Date | string;
|
||||
name: string;
|
||||
isSpecial: boolean;
|
||||
}
|
||||
|
||||
interface DataDateMonthObject {
|
||||
month: number;
|
||||
year: number;
|
||||
}
|
||||
|
||||
//ข้อมูล
|
||||
interface RequestItemsObject {
|
||||
createdAt?: Date;
|
||||
createdFullName: string;
|
||||
createdUserId: string;
|
||||
holidayDate: Date | string;
|
||||
id: string;
|
||||
isSpecial: boolean;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdateUserId: string;
|
||||
lastUpdatedAt?: Date;
|
||||
name: string;
|
||||
originalDate: Date;
|
||||
}
|
||||
|
||||
interface DataDateRowObject {
|
||||
holidayDate: Date;
|
||||
name: string;
|
||||
isSpecial: boolean;
|
||||
id: string;
|
||||
}
|
||||
|
||||
interface DataDateListsObject {
|
||||
id: string;
|
||||
dateRange: [Date, Date];
|
||||
dataRangeRow: DataDateRowObject[];
|
||||
detail: string;
|
||||
isSpecial: boolean;
|
||||
}
|
||||
|
||||
//columns
|
||||
interface Columns {
|
||||
[index: number]: {
|
||||
name: string;
|
||||
align?: string;
|
||||
label: string;
|
||||
sortable?: boolean;
|
||||
field: string | ((row: any) => any);
|
||||
headerStyle?: string;
|
||||
style?: string;
|
||||
};
|
||||
}
|
||||
|
||||
interface TabsObject {
|
||||
label: string;
|
||||
value: string;
|
||||
}
|
||||
|
||||
export type {
|
||||
DataNumObject,
|
||||
DataDateAddObject,
|
||||
DataDateMonthObject,
|
||||
RequestItemsObject,
|
||||
DataDateRowObject,
|
||||
DataDateListsObject,
|
||||
Columns,
|
||||
TabsObject,
|
||||
};
|
||||
14
src/modules/01_metadata/interface/request/Main.ts
Normal file
14
src/modules/01_metadata/interface/request/Main.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
interface DataSumCalendarObject {
|
||||
id: number;
|
||||
monthFull: String;
|
||||
count: number;
|
||||
color: String;
|
||||
}
|
||||
|
||||
interface DataListsObject {
|
||||
id: number;
|
||||
count: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export type { DataSumCalendarObject, DataListsObject };
|
||||
39
src/modules/01_metadata/interface/request/insignia/Badge.ts
Normal file
39
src/modules/01_metadata/interface/request/insignia/Badge.ts
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
//ข้อมูลประวัติแก้ไข
|
||||
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;
|
||||
shortName: 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,
|
||||
};
|
||||
|
|
@ -0,0 +1,42 @@
|
|||
//ข้อมูลประวัติแก้ไข
|
||||
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;
|
||||
level: number;
|
||||
name: string;
|
||||
shortName: String;
|
||||
insigniaType?: any;
|
||||
note: 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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
//ข้อมูลประวัติแก้ไข
|
||||
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;
|
||||
note: 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,
|
||||
};
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
//ข้อมูลประวัติแก้ไข
|
||||
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;
|
||||
agencyCode: String;
|
||||
governmentCode: String;
|
||||
name: string;
|
||||
note: 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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
38
src/modules/01_metadata/interface/request/person/Blood.ts
Normal file
38
src/modules/01_metadata/interface/request/person/Blood.ts
Normal file
|
|
@ -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,
|
||||
};
|
||||
38
src/modules/01_metadata/interface/request/person/District.ts
Normal file
38
src/modules/01_metadata/interface/request/person/District.ts
Normal file
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
38
src/modules/01_metadata/interface/request/person/Gender.ts
Normal file
38
src/modules/01_metadata/interface/request/person/Gender.ts
Normal file
|
|
@ -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,
|
||||
};
|
||||
47
src/modules/01_metadata/interface/request/person/Prefix.ts
Normal file
47
src/modules/01_metadata/interface/request/person/Prefix.ts
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
import type { StringifyOptions } from "querystring";
|
||||
|
||||
//ข้อมูลประวัติแก้ไข
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
||||
//ข้อมูลประวัติแก้ไข
|
||||
interface ResponseHistoryObject {
|
||||
createdFullName: String;
|
||||
lastUpdateFullName: String;
|
||||
name: String;
|
||||
}
|
||||
|
||||
export type {
|
||||
RequestItemsHistoryObject,
|
||||
RequestItemsPublishHistoryObject,
|
||||
Columns,
|
||||
};
|
||||
38
src/modules/01_metadata/interface/request/person/Province.ts
Normal file
38
src/modules/01_metadata/interface/request/person/Province.ts
Normal file
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
38
src/modules/01_metadata/interface/request/person/Religion.ts
Normal file
38
src/modules/01_metadata/interface/request/person/Religion.ts
Normal file
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
//ข้อมูลประวัติแก้ไข
|
||||
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;
|
||||
zipCode: 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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
//ข้อมูลประวัติแก้ไข
|
||||
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;
|
||||
note: 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,
|
||||
};
|
||||
40
src/modules/01_metadata/interface/request/position/Level.ts
Normal file
40
src/modules/01_metadata/interface/request/position/Level.ts
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
//ข้อมูลประวัติแก้ไข
|
||||
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;
|
||||
level: number;
|
||||
name: string;
|
||||
shortName: 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,
|
||||
};
|
||||
38
src/modules/01_metadata/interface/request/position/Line.ts
Normal file
38
src/modules/01_metadata/interface/request/position/Line.ts
Normal file
|
|
@ -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,
|
||||
};
|
||||
39
src/modules/01_metadata/interface/request/position/Path.ts
Normal file
39
src/modules/01_metadata/interface/request/position/Path.ts
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
//ข้อมูลประวัติแก้ไข
|
||||
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;
|
||||
note: 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,
|
||||
};
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
//ข้อมูลประวัติแก้ไข
|
||||
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;
|
||||
note: 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,
|
||||
};
|
||||
38
src/modules/01_metadata/interface/request/position/Status.ts
Normal file
38
src/modules/01_metadata/interface/request/position/Status.ts
Normal file
|
|
@ -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,
|
||||
};
|
||||
38
src/modules/01_metadata/interface/request/position/Type.ts
Normal file
38
src/modules/01_metadata/interface/request/position/Type.ts
Normal file
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -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,
|
||||
};
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
//ข้อมูลประวัติแก้ไข
|
||||
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;
|
||||
note: 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,
|
||||
};
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
//ข้อมูลประวัติแก้ไข
|
||||
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;
|
||||
note: 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,
|
||||
};
|
||||
|
|
@ -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