@admc-go-th/admc-library 1.0.75 → 1.0.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/appBlessings-peNBIrhQ.d.ts +61 -0
- package/databases/schema/appBlessings.ts +119 -0
- package/databases/schema/appBlessingsTransaction.ts +96 -0
- package/databases/schema/index.ts +4 -0
- package/databases/schema/mdInformationIndex.ts +217 -0
- package/databases/schema/mdInformationIndexGroup.ts +110 -0
- package/databases/tables/appBlessings.d.ts +2 -0
- package/databases/tables/appBlessings.js +221 -0
- package/databases/tables/appBlessingsTransaction.d.ts +2 -0
- package/databases/tables/appBlessingsTransaction.js +221 -0
- package/databases/tables/index.d.ts +2 -0
- package/databases/tables/index.js +2269 -1792
- package/databases/tables/mdInformationIndex.d.ts +2 -0
- package/databases/tables/mdInformationIndex.js +318 -0
- package/databases/tables/mdInformationIndexGroup.d.ts +2 -0
- package/databases/tables/mdInformationIndexGroup.js +318 -0
- package/mdInformationIndex-BoCz0Vkk.d.ts +91 -0
- package/package.json +1 -1
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { Model } from 'sequelize-typescript';
|
|
2
|
+
|
|
3
|
+
interface mdInformationIndexGroupAttributes {
|
|
4
|
+
id?: number;
|
|
5
|
+
uuid?: string;
|
|
6
|
+
keyName?: string;
|
|
7
|
+
userId?: number;
|
|
8
|
+
name: string;
|
|
9
|
+
description?: string;
|
|
10
|
+
sort?: number;
|
|
11
|
+
status?: number;
|
|
12
|
+
createdBy?: string;
|
|
13
|
+
createdDate?: Date;
|
|
14
|
+
updatedBy?: string;
|
|
15
|
+
updatedDate?: Date;
|
|
16
|
+
}
|
|
17
|
+
declare class mdInformationIndexGroup extends Model<mdInformationIndexGroupAttributes, mdInformationIndexGroupAttributes> implements mdInformationIndexGroupAttributes {
|
|
18
|
+
id?: number;
|
|
19
|
+
uuid?: string;
|
|
20
|
+
keyName?: string;
|
|
21
|
+
userId?: number;
|
|
22
|
+
name: string;
|
|
23
|
+
description?: string;
|
|
24
|
+
sort?: number;
|
|
25
|
+
status?: number;
|
|
26
|
+
createdBy?: string;
|
|
27
|
+
createdDate?: Date;
|
|
28
|
+
updatedBy?: string;
|
|
29
|
+
updatedDate?: Date;
|
|
30
|
+
mdInformationIndices?: mdInformationIndex[];
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
interface mdInformationIndexAttributes {
|
|
34
|
+
id?: number;
|
|
35
|
+
uuid?: string;
|
|
36
|
+
keyName?: string;
|
|
37
|
+
groupId?: number;
|
|
38
|
+
userId: number;
|
|
39
|
+
title?: string;
|
|
40
|
+
description?: string;
|
|
41
|
+
detail?: string;
|
|
42
|
+
metaTitle?: string;
|
|
43
|
+
metaKeyword?: string;
|
|
44
|
+
metaDescription?: string;
|
|
45
|
+
categoryNo?: number;
|
|
46
|
+
bookNo?: number;
|
|
47
|
+
chapter?: string;
|
|
48
|
+
announcementDate?: Date;
|
|
49
|
+
attachments?: object;
|
|
50
|
+
sort?: number;
|
|
51
|
+
publish?: number;
|
|
52
|
+
status?: number;
|
|
53
|
+
hasExpire?: number;
|
|
54
|
+
startDate?: Date;
|
|
55
|
+
expireDate?: Date;
|
|
56
|
+
createdBy?: string;
|
|
57
|
+
createdDate?: Date;
|
|
58
|
+
updatedBy?: string;
|
|
59
|
+
updatedDate?: Date;
|
|
60
|
+
}
|
|
61
|
+
declare class mdInformationIndex extends Model<mdInformationIndexAttributes, mdInformationIndexAttributes> implements mdInformationIndexAttributes {
|
|
62
|
+
id?: number;
|
|
63
|
+
uuid?: string;
|
|
64
|
+
keyName?: string;
|
|
65
|
+
groupId?: number;
|
|
66
|
+
userId: number;
|
|
67
|
+
title?: string;
|
|
68
|
+
description?: string;
|
|
69
|
+
detail?: string;
|
|
70
|
+
metaTitle?: string;
|
|
71
|
+
metaKeyword?: string;
|
|
72
|
+
metaDescription?: string;
|
|
73
|
+
categoryNo?: number;
|
|
74
|
+
bookNo?: number;
|
|
75
|
+
chapter?: string;
|
|
76
|
+
announcementDate?: Date;
|
|
77
|
+
attachments?: object;
|
|
78
|
+
sort?: number;
|
|
79
|
+
publish?: number;
|
|
80
|
+
status?: number;
|
|
81
|
+
hasExpire?: number;
|
|
82
|
+
startDate?: Date;
|
|
83
|
+
expireDate?: Date;
|
|
84
|
+
createdBy?: string;
|
|
85
|
+
createdDate?: Date;
|
|
86
|
+
updatedBy?: string;
|
|
87
|
+
updatedDate?: Date;
|
|
88
|
+
mdInformationIndexGroup?: mdInformationIndexGroup;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export { mdInformationIndex as a, type mdInformationIndexGroupAttributes as b, mdInformationIndexGroup as c, type mdInformationIndexAttributes as m };
|