@admc-go-th/admc-library 1.0.137 → 1.1.137
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/databases/schema/appScoreType.ts +8 -0
- package/databases/schema/formFaq.ts +126 -126
- package/databases/schema/index.ts +3 -0
- package/databases/schema/informationIndex.ts +211 -211
- package/databases/schema/informationIndexGroup.ts +103 -103
- package/databases/schema/mdDownloadBk.ts +136 -136
- package/databases/schema/msExecutiveBoard.ts +82 -82
- package/databases/schema/msExecutiveBoardBk.ts +82 -82
- package/databases/schema/msExecutivePosition.ts +117 -117
- package/databases/schema/msExecutivePositionBk.ts +111 -111
- package/databases/schema/msGuidelines.ts +88 -88
- package/databases/schema/msPersonType.ts +75 -0
- package/databases/schema/setting.ts +73 -73
- package/databases/tables/appScoreType.d.ts +2 -0
- package/databases/tables/appScoreType.js +7 -0
- package/databases/tables/index.d.ts +3 -0
- package/databases/tables/index.js +505 -239
- package/databases/tables/msPersonType.d.ts +24 -0
- package/databases/tables/msPersonType.js +99 -0
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@ export interface appScoreTypeAttributes {
|
|
|
7
7
|
name?: string;
|
|
8
8
|
detail?: string;
|
|
9
9
|
color?: string;
|
|
10
|
+
fileUuid?: string;
|
|
10
11
|
status?: number;
|
|
11
12
|
createdBy?: string;
|
|
12
13
|
createdDate?: Date;
|
|
@@ -45,6 +46,13 @@ export class appScoreType extends Model<appScoreTypeAttributes, appScoreTypeAttr
|
|
|
45
46
|
})
|
|
46
47
|
declare color?: string;
|
|
47
48
|
|
|
49
|
+
@Column({
|
|
50
|
+
field: "file_uuid",
|
|
51
|
+
allowNull: true,
|
|
52
|
+
type: DataType.STRING(100)
|
|
53
|
+
})
|
|
54
|
+
declare fileUuid?: string;
|
|
55
|
+
|
|
48
56
|
@Column({
|
|
49
57
|
allowNull: true,
|
|
50
58
|
type: DataType.INTEGER
|
|
@@ -1,127 +1,127 @@
|
|
|
1
|
-
import {
|
|
2
|
-
Model, Table, Column, DataType, Index, Sequelize, ForeignKey
|
|
3
|
-
} from "sequelize-typescript";
|
|
4
|
-
|
|
5
|
-
export interface formFaqAttributes {
|
|
6
|
-
id?: number;
|
|
7
|
-
uuid?: string;
|
|
8
|
-
titleName?: string;
|
|
9
|
-
firstName?: string;
|
|
10
|
-
lastName?: string;
|
|
11
|
-
phone?: string;
|
|
12
|
-
email?: string;
|
|
13
|
-
question?: string;
|
|
14
|
-
detail?: string;
|
|
15
|
-
attachments?: object;
|
|
16
|
-
status?: number;
|
|
17
|
-
createdBy?: string;
|
|
18
|
-
createdDate?: Date;
|
|
19
|
-
updatedBy?: string;
|
|
20
|
-
updatedDate?: Date;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
@Table({
|
|
24
|
-
tableName: "form_faq",
|
|
25
|
-
timestamps: false
|
|
26
|
-
})
|
|
27
|
-
export class formFaq extends Model<formFaqAttributes, formFaqAttributes> implements formFaqAttributes {
|
|
28
|
-
|
|
29
|
-
@Column({
|
|
30
|
-
primaryKey: true,
|
|
31
|
-
autoIncrement: true,
|
|
32
|
-
type: DataType.INTEGER
|
|
33
|
-
})
|
|
34
|
-
declare id?: number;
|
|
35
|
-
|
|
36
|
-
@Column({
|
|
37
|
-
allowNull: true,
|
|
38
|
-
type: DataType.STRING(60)
|
|
39
|
-
})
|
|
40
|
-
declare uuid?: string;
|
|
41
|
-
|
|
42
|
-
@Column({
|
|
43
|
-
field: "title_name",
|
|
44
|
-
allowNull: true,
|
|
45
|
-
type: DataType.STRING(50)
|
|
46
|
-
})
|
|
47
|
-
declare titleName?: string;
|
|
48
|
-
|
|
49
|
-
@Column({
|
|
50
|
-
field: "first_name",
|
|
51
|
-
allowNull: true,
|
|
52
|
-
type: DataType.STRING(255)
|
|
53
|
-
})
|
|
54
|
-
declare firstName?: string;
|
|
55
|
-
|
|
56
|
-
@Column({
|
|
57
|
-
field: "last_name",
|
|
58
|
-
allowNull: true,
|
|
59
|
-
type: DataType.STRING(255)
|
|
60
|
-
})
|
|
61
|
-
declare lastName?: string;
|
|
62
|
-
|
|
63
|
-
@Column({
|
|
64
|
-
allowNull: true,
|
|
65
|
-
type: DataType.STRING(255)
|
|
66
|
-
})
|
|
67
|
-
declare phone?: string;
|
|
68
|
-
|
|
69
|
-
@Column({
|
|
70
|
-
allowNull: true,
|
|
71
|
-
type: DataType.STRING(255)
|
|
72
|
-
})
|
|
73
|
-
declare email?: string;
|
|
74
|
-
|
|
75
|
-
@Column({
|
|
76
|
-
allowNull: true,
|
|
77
|
-
type: DataType.STRING(255)
|
|
78
|
-
})
|
|
79
|
-
declare question?: string;
|
|
80
|
-
|
|
81
|
-
@Column({
|
|
82
|
-
allowNull: true,
|
|
83
|
-
type: DataType.STRING
|
|
84
|
-
})
|
|
85
|
-
declare detail?: string;
|
|
86
|
-
|
|
87
|
-
@Column({
|
|
88
|
-
allowNull: true,
|
|
89
|
-
type: DataType.JSON
|
|
90
|
-
})
|
|
91
|
-
declare attachments?: object;
|
|
92
|
-
|
|
93
|
-
@Column({
|
|
94
|
-
allowNull: true,
|
|
95
|
-
type: DataType.INTEGER
|
|
96
|
-
})
|
|
97
|
-
declare status?: number;
|
|
98
|
-
|
|
99
|
-
@Column({
|
|
100
|
-
field: "created_by",
|
|
101
|
-
allowNull: true,
|
|
102
|
-
type: DataType.STRING(60)
|
|
103
|
-
})
|
|
104
|
-
declare createdBy?: string;
|
|
105
|
-
|
|
106
|
-
@Column({
|
|
107
|
-
field: "created_date",
|
|
108
|
-
allowNull: true,
|
|
109
|
-
type: DataType.DATE
|
|
110
|
-
})
|
|
111
|
-
declare createdDate?: Date;
|
|
112
|
-
|
|
113
|
-
@Column({
|
|
114
|
-
field: "updated_by",
|
|
115
|
-
allowNull: true,
|
|
116
|
-
type: DataType.STRING(60)
|
|
117
|
-
})
|
|
118
|
-
declare updatedBy?: string;
|
|
119
|
-
|
|
120
|
-
@Column({
|
|
121
|
-
field: "updated_date",
|
|
122
|
-
allowNull: true,
|
|
123
|
-
type: DataType.DATE
|
|
124
|
-
})
|
|
125
|
-
declare updatedDate?: Date;
|
|
126
|
-
|
|
1
|
+
import {
|
|
2
|
+
Model, Table, Column, DataType, Index, Sequelize, ForeignKey
|
|
3
|
+
} from "sequelize-typescript";
|
|
4
|
+
|
|
5
|
+
export interface formFaqAttributes {
|
|
6
|
+
id?: number;
|
|
7
|
+
uuid?: string;
|
|
8
|
+
titleName?: string;
|
|
9
|
+
firstName?: string;
|
|
10
|
+
lastName?: string;
|
|
11
|
+
phone?: string;
|
|
12
|
+
email?: string;
|
|
13
|
+
question?: string;
|
|
14
|
+
detail?: string;
|
|
15
|
+
attachments?: object;
|
|
16
|
+
status?: number;
|
|
17
|
+
createdBy?: string;
|
|
18
|
+
createdDate?: Date;
|
|
19
|
+
updatedBy?: string;
|
|
20
|
+
updatedDate?: Date;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@Table({
|
|
24
|
+
tableName: "form_faq",
|
|
25
|
+
timestamps: false
|
|
26
|
+
})
|
|
27
|
+
export class formFaq extends Model<formFaqAttributes, formFaqAttributes> implements formFaqAttributes {
|
|
28
|
+
|
|
29
|
+
@Column({
|
|
30
|
+
primaryKey: true,
|
|
31
|
+
autoIncrement: true,
|
|
32
|
+
type: DataType.INTEGER
|
|
33
|
+
})
|
|
34
|
+
declare id?: number;
|
|
35
|
+
|
|
36
|
+
@Column({
|
|
37
|
+
allowNull: true,
|
|
38
|
+
type: DataType.STRING(60)
|
|
39
|
+
})
|
|
40
|
+
declare uuid?: string;
|
|
41
|
+
|
|
42
|
+
@Column({
|
|
43
|
+
field: "title_name",
|
|
44
|
+
allowNull: true,
|
|
45
|
+
type: DataType.STRING(50)
|
|
46
|
+
})
|
|
47
|
+
declare titleName?: string;
|
|
48
|
+
|
|
49
|
+
@Column({
|
|
50
|
+
field: "first_name",
|
|
51
|
+
allowNull: true,
|
|
52
|
+
type: DataType.STRING(255)
|
|
53
|
+
})
|
|
54
|
+
declare firstName?: string;
|
|
55
|
+
|
|
56
|
+
@Column({
|
|
57
|
+
field: "last_name",
|
|
58
|
+
allowNull: true,
|
|
59
|
+
type: DataType.STRING(255)
|
|
60
|
+
})
|
|
61
|
+
declare lastName?: string;
|
|
62
|
+
|
|
63
|
+
@Column({
|
|
64
|
+
allowNull: true,
|
|
65
|
+
type: DataType.STRING(255)
|
|
66
|
+
})
|
|
67
|
+
declare phone?: string;
|
|
68
|
+
|
|
69
|
+
@Column({
|
|
70
|
+
allowNull: true,
|
|
71
|
+
type: DataType.STRING(255)
|
|
72
|
+
})
|
|
73
|
+
declare email?: string;
|
|
74
|
+
|
|
75
|
+
@Column({
|
|
76
|
+
allowNull: true,
|
|
77
|
+
type: DataType.STRING(255)
|
|
78
|
+
})
|
|
79
|
+
declare question?: string;
|
|
80
|
+
|
|
81
|
+
@Column({
|
|
82
|
+
allowNull: true,
|
|
83
|
+
type: DataType.STRING
|
|
84
|
+
})
|
|
85
|
+
declare detail?: string;
|
|
86
|
+
|
|
87
|
+
@Column({
|
|
88
|
+
allowNull: true,
|
|
89
|
+
type: DataType.JSON
|
|
90
|
+
})
|
|
91
|
+
declare attachments?: object;
|
|
92
|
+
|
|
93
|
+
@Column({
|
|
94
|
+
allowNull: true,
|
|
95
|
+
type: DataType.INTEGER
|
|
96
|
+
})
|
|
97
|
+
declare status?: number;
|
|
98
|
+
|
|
99
|
+
@Column({
|
|
100
|
+
field: "created_by",
|
|
101
|
+
allowNull: true,
|
|
102
|
+
type: DataType.STRING(60)
|
|
103
|
+
})
|
|
104
|
+
declare createdBy?: string;
|
|
105
|
+
|
|
106
|
+
@Column({
|
|
107
|
+
field: "created_date",
|
|
108
|
+
allowNull: true,
|
|
109
|
+
type: DataType.DATE
|
|
110
|
+
})
|
|
111
|
+
declare createdDate?: Date;
|
|
112
|
+
|
|
113
|
+
@Column({
|
|
114
|
+
field: "updated_by",
|
|
115
|
+
allowNull: true,
|
|
116
|
+
type: DataType.STRING(60)
|
|
117
|
+
})
|
|
118
|
+
declare updatedBy?: string;
|
|
119
|
+
|
|
120
|
+
@Column({
|
|
121
|
+
field: "updated_date",
|
|
122
|
+
allowNull: true,
|
|
123
|
+
type: DataType.DATE
|
|
124
|
+
})
|
|
125
|
+
declare updatedDate?: Date;
|
|
126
|
+
|
|
127
127
|
}
|
|
@@ -70,6 +70,7 @@ export * from "./msExecutiveLevel";
|
|
|
70
70
|
export * from "./msHoliday";
|
|
71
71
|
export * from "./msModule";
|
|
72
72
|
export * from "./msOrganization";
|
|
73
|
+
export * from "./msPersonType";
|
|
73
74
|
export * from "./msPosition";
|
|
74
75
|
export * from "./msProvince";
|
|
75
76
|
export * from "./msQueueTourFaq";
|
|
@@ -82,6 +83,8 @@ export * from "./oauthRefreshToken";
|
|
|
82
83
|
export * from "./recruitment";
|
|
83
84
|
export * from "./recruitmentGroup";
|
|
84
85
|
export * from "./settings";
|
|
86
|
+
export * from "./userCenterV";
|
|
85
87
|
export * from "./userPermissionV";
|
|
88
|
+
export * from "./userRoleV";
|
|
86
89
|
export * from "./users";
|
|
87
90
|
export * from "./usersVerify";
|