@admc-go-th/admc-library 1.0.118 → 1.0.119
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/mdDownloadGroup.ts +7 -0
- package/databases/schema/mdEbookGroup.ts +7 -0
- package/databases/schema/mdFaqGroup.ts +7 -0
- package/databases/schema/mdNewsGroup.ts +7 -0
- package/databases/schema/msExecutive.ts +15 -7
- package/databases/schema/msExecutivePosition.ts +23 -0
- package/databases/schema/recruitment.ts +15 -0
- package/databases/tables/index.d.ts +6 -6
- package/databases/tables/index.js +68 -4
- package/databases/tables/mdDownload.d.ts +1 -1
- package/databases/tables/mdDownload.js +6 -0
- package/databases/tables/mdDownloadGroup.d.ts +1 -1
- package/databases/tables/mdDownloadGroup.js +6 -0
- package/databases/tables/mdEbook.d.ts +1 -1
- package/databases/tables/mdEbook.js +6 -0
- package/databases/tables/mdEbookGroup.d.ts +1 -1
- package/databases/tables/mdEbookGroup.js +6 -0
- package/databases/tables/mdFaq.d.ts +1 -1
- package/databases/tables/mdFaq.js +6 -0
- package/databases/tables/mdFaqGroup.d.ts +1 -1
- package/databases/tables/mdFaqGroup.js +6 -0
- package/databases/tables/mdNews.d.ts +1 -1
- package/databases/tables/mdNews.js +6 -0
- package/databases/tables/mdNewsGroup.d.ts +1 -1
- package/databases/tables/mdNewsGroup.js +6 -0
- package/databases/tables/msExecutive.d.ts +1 -1
- package/databases/tables/msExecutive.js +31 -4
- package/databases/tables/msExecutiveGroup.d.ts +1 -1
- package/databases/tables/msExecutiveGroup.js +31 -4
- package/databases/tables/msExecutivePosition.d.ts +1 -1
- package/databases/tables/msExecutivePosition.js +31 -4
- package/databases/tables/recruitment.d.ts +1 -1
- package/databases/tables/recruitment.js +13 -0
- package/databases/tables/recruitmentGroup.d.ts +1 -1
- package/databases/tables/recruitmentGroup.js +13 -0
- package/{mdDownload-RICzliX6.d.ts → mdDownload-CCc6eto7.d.ts} +2 -0
- package/{mdEbook-CAvTi5ia.d.ts → mdEbook-BqC65Ujw.d.ts} +2 -0
- package/{mdFaq-Cg-D362f.d.ts → mdFaq-CHIPG3yZ.d.ts} +2 -0
- package/{mdNews-AU_zz7jr.d.ts → mdNews-DfHz7Ajk.d.ts} +2 -0
- package/{msExecutive-1j_DcKu7.d.ts → msExecutive-B7lTHxSZ.d.ts} +12 -4
- package/package.json +1 -1
- package/{recruitment-DmJeINPg.d.ts → recruitment-5Pi7YA8x.d.ts} +4 -0
|
@@ -10,6 +10,7 @@ export interface mdDownloadGroupAttributes {
|
|
|
10
10
|
userId?: number;
|
|
11
11
|
name: string;
|
|
12
12
|
description?: string;
|
|
13
|
+
sort?: number;
|
|
13
14
|
status?: number;
|
|
14
15
|
createdBy?: string;
|
|
15
16
|
createdDate?: Date;
|
|
@@ -61,6 +62,12 @@ export class mdDownloadGroup extends Model<mdDownloadGroupAttributes, mdDownload
|
|
|
61
62
|
})
|
|
62
63
|
declare description?: string;
|
|
63
64
|
|
|
65
|
+
@Column({
|
|
66
|
+
allowNull: true,
|
|
67
|
+
type: DataType.INTEGER
|
|
68
|
+
})
|
|
69
|
+
declare sort?: number;
|
|
70
|
+
|
|
64
71
|
@Column({
|
|
65
72
|
allowNull: true,
|
|
66
73
|
type: DataType.INTEGER
|
|
@@ -10,6 +10,7 @@ export interface mdEbookGroupAttributes {
|
|
|
10
10
|
userId?: number;
|
|
11
11
|
name: string;
|
|
12
12
|
description?: string;
|
|
13
|
+
sort?: number;
|
|
13
14
|
status?: number;
|
|
14
15
|
createdBy?: string;
|
|
15
16
|
createdDate?: Date;
|
|
@@ -61,6 +62,12 @@ export class mdEbookGroup extends Model<mdEbookGroupAttributes, mdEbookGroupAttr
|
|
|
61
62
|
})
|
|
62
63
|
declare description?: string;
|
|
63
64
|
|
|
65
|
+
@Column({
|
|
66
|
+
allowNull: true,
|
|
67
|
+
type: DataType.INTEGER
|
|
68
|
+
})
|
|
69
|
+
declare sort?: number;
|
|
70
|
+
|
|
64
71
|
@Column({
|
|
65
72
|
allowNull: true,
|
|
66
73
|
type: DataType.INTEGER
|
|
@@ -10,6 +10,7 @@ export interface mdFaqGroupAttributes {
|
|
|
10
10
|
userId?: number;
|
|
11
11
|
name: string;
|
|
12
12
|
description?: string;
|
|
13
|
+
sort?: number;
|
|
13
14
|
status?: number;
|
|
14
15
|
createdBy?: string;
|
|
15
16
|
createdDate?: Date;
|
|
@@ -61,6 +62,12 @@ export class mdFaqGroup extends Model<mdFaqGroupAttributes, mdFaqGroupAttributes
|
|
|
61
62
|
})
|
|
62
63
|
declare description?: string;
|
|
63
64
|
|
|
65
|
+
@Column({
|
|
66
|
+
allowNull: true,
|
|
67
|
+
type: DataType.INTEGER
|
|
68
|
+
})
|
|
69
|
+
declare sort?: number;
|
|
70
|
+
|
|
64
71
|
@Column({
|
|
65
72
|
allowNull: true,
|
|
66
73
|
type: DataType.INTEGER
|
|
@@ -10,6 +10,7 @@ export interface mdNewsGroupAttributes {
|
|
|
10
10
|
userId?: number;
|
|
11
11
|
name: string;
|
|
12
12
|
description?: string;
|
|
13
|
+
sort?: number;
|
|
13
14
|
status?: number;
|
|
14
15
|
createdBy?: string;
|
|
15
16
|
createdDate?: Date;
|
|
@@ -61,6 +62,12 @@ export class mdNewsGroup extends Model<mdNewsGroupAttributes, mdNewsGroupAttribu
|
|
|
61
62
|
})
|
|
62
63
|
declare description?: string;
|
|
63
64
|
|
|
65
|
+
@Column({
|
|
66
|
+
allowNull: true,
|
|
67
|
+
type: DataType.INTEGER
|
|
68
|
+
})
|
|
69
|
+
declare sort?: number;
|
|
70
|
+
|
|
64
71
|
@Column({
|
|
65
72
|
allowNull: true,
|
|
66
73
|
type: DataType.INTEGER
|
|
@@ -7,7 +7,7 @@ import { msExecutivePosition } from "./msExecutivePosition";
|
|
|
7
7
|
export interface msExecutiveAttributes {
|
|
8
8
|
id?: number;
|
|
9
9
|
groupId?: number;
|
|
10
|
-
|
|
10
|
+
levelId?: number;
|
|
11
11
|
positionName?: string;
|
|
12
12
|
positionOther?: string;
|
|
13
13
|
titleId?: number;
|
|
@@ -20,12 +20,13 @@ export interface msExecutiveAttributes {
|
|
|
20
20
|
experience?: string;
|
|
21
21
|
image?: string;
|
|
22
22
|
sort?: number;
|
|
23
|
-
status?:
|
|
23
|
+
status?: number;
|
|
24
24
|
info?: object;
|
|
25
25
|
createdBy?: string;
|
|
26
26
|
createdDate?: Date;
|
|
27
27
|
updatedBy?: string;
|
|
28
28
|
updatedDate?: Date;
|
|
29
|
+
positionId?: number;
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
@Table({
|
|
@@ -49,13 +50,12 @@ export class msExecutive extends Model<msExecutiveAttributes, msExecutiveAttribu
|
|
|
49
50
|
})
|
|
50
51
|
declare groupId?: number;
|
|
51
52
|
|
|
52
|
-
@ForeignKey(() => msExecutivePosition)
|
|
53
53
|
@Column({
|
|
54
|
-
field: "
|
|
54
|
+
field: "level_id",
|
|
55
55
|
allowNull: true,
|
|
56
56
|
type: DataType.INTEGER
|
|
57
57
|
})
|
|
58
|
-
declare
|
|
58
|
+
declare levelId?: number;
|
|
59
59
|
|
|
60
60
|
@Column({
|
|
61
61
|
field: "position_name",
|
|
@@ -136,9 +136,9 @@ export class msExecutive extends Model<msExecutiveAttributes, msExecutiveAttribu
|
|
|
136
136
|
|
|
137
137
|
@Column({
|
|
138
138
|
allowNull: true,
|
|
139
|
-
type: DataType.
|
|
139
|
+
type: DataType.INTEGER
|
|
140
140
|
})
|
|
141
|
-
declare status?:
|
|
141
|
+
declare status?: number;
|
|
142
142
|
|
|
143
143
|
@Column({
|
|
144
144
|
allowNull: true,
|
|
@@ -174,6 +174,14 @@ export class msExecutive extends Model<msExecutiveAttributes, msExecutiveAttribu
|
|
|
174
174
|
})
|
|
175
175
|
declare updatedDate?: Date;
|
|
176
176
|
|
|
177
|
+
@ForeignKey(() => msExecutivePosition)
|
|
178
|
+
@Column({
|
|
179
|
+
field: "position_id",
|
|
180
|
+
allowNull: true,
|
|
181
|
+
type: DataType.INTEGER
|
|
182
|
+
})
|
|
183
|
+
declare positionId?: number;
|
|
184
|
+
|
|
177
185
|
@BelongsTo(() => msExecutiveGroup)
|
|
178
186
|
declare msExecutiveGroup?: msExecutiveGroup;
|
|
179
187
|
|
|
@@ -5,8 +5,11 @@ import { msExecutive } from "./msExecutive";
|
|
|
5
5
|
|
|
6
6
|
export interface msExecutivePositionAttributes {
|
|
7
7
|
id?: number;
|
|
8
|
+
groupId?: number;
|
|
8
9
|
name?: string;
|
|
9
10
|
description?: string;
|
|
11
|
+
updatedInfo?: string;
|
|
12
|
+
remark?: string;
|
|
10
13
|
sort?: number;
|
|
11
14
|
status?: number;
|
|
12
15
|
info?: object;
|
|
@@ -29,6 +32,13 @@ export class msExecutivePosition extends Model<msExecutivePositionAttributes, ms
|
|
|
29
32
|
})
|
|
30
33
|
declare id?: number;
|
|
31
34
|
|
|
35
|
+
@Column({
|
|
36
|
+
field: "group_id",
|
|
37
|
+
allowNull: true,
|
|
38
|
+
type: DataType.INTEGER
|
|
39
|
+
})
|
|
40
|
+
declare groupId?: number;
|
|
41
|
+
|
|
32
42
|
@Column({
|
|
33
43
|
allowNull: true,
|
|
34
44
|
type: DataType.STRING(255)
|
|
@@ -41,6 +51,19 @@ export class msExecutivePosition extends Model<msExecutivePositionAttributes, ms
|
|
|
41
51
|
})
|
|
42
52
|
declare description?: string;
|
|
43
53
|
|
|
54
|
+
@Column({
|
|
55
|
+
field: "updated_info",
|
|
56
|
+
allowNull: true,
|
|
57
|
+
type: DataType.STRING(255)
|
|
58
|
+
})
|
|
59
|
+
declare updatedInfo?: string;
|
|
60
|
+
|
|
61
|
+
@Column({
|
|
62
|
+
allowNull: true,
|
|
63
|
+
type: DataType.STRING
|
|
64
|
+
})
|
|
65
|
+
declare remark?: string;
|
|
66
|
+
|
|
44
67
|
@Column({
|
|
45
68
|
allowNull: true,
|
|
46
69
|
type: DataType.INTEGER
|
|
@@ -12,11 +12,13 @@ export interface recruitmentAttributes {
|
|
|
12
12
|
accountAge?: number;
|
|
13
13
|
accountExpires?: string;
|
|
14
14
|
calledPosition?: number;
|
|
15
|
+
sort?: number;
|
|
15
16
|
status?: number;
|
|
16
17
|
createdBy?: string;
|
|
17
18
|
createdDate?: Date;
|
|
18
19
|
updatedBy?: string;
|
|
19
20
|
updatedDate?: Date;
|
|
21
|
+
refId?: number;
|
|
20
22
|
}
|
|
21
23
|
|
|
22
24
|
@Table({
|
|
@@ -81,6 +83,12 @@ export class recruitment extends Model<recruitmentAttributes, recruitmentAttribu
|
|
|
81
83
|
})
|
|
82
84
|
declare calledPosition?: number;
|
|
83
85
|
|
|
86
|
+
@Column({
|
|
87
|
+
allowNull: true,
|
|
88
|
+
type: DataType.INTEGER
|
|
89
|
+
})
|
|
90
|
+
declare sort?: number;
|
|
91
|
+
|
|
84
92
|
@Column({
|
|
85
93
|
allowNull: true,
|
|
86
94
|
type: DataType.INTEGER
|
|
@@ -115,6 +123,13 @@ export class recruitment extends Model<recruitmentAttributes, recruitmentAttribu
|
|
|
115
123
|
})
|
|
116
124
|
declare updatedDate?: Date;
|
|
117
125
|
|
|
126
|
+
@Column({
|
|
127
|
+
field: "ref_id",
|
|
128
|
+
allowNull: true,
|
|
129
|
+
type: DataType.INTEGER
|
|
130
|
+
})
|
|
131
|
+
declare refId?: number;
|
|
132
|
+
|
|
118
133
|
@BelongsTo(() => recruitmentGroup)
|
|
119
134
|
declare recruitmentGroup?: recruitmentGroup;
|
|
120
135
|
|
|
@@ -13,21 +13,21 @@ export { logs, logsAttributes } from './logs.js';
|
|
|
13
13
|
export { mdCmsSingle, mdCmsSingleAttributes } from './mdCmsSingle.js';
|
|
14
14
|
export { mdConfiguration, mdConfigurationAttributes } from './mdConfiguration.js';
|
|
15
15
|
export { mdDocumentPdf, mdDocumentPdfAttributes } from './mdDocumentPdf.js';
|
|
16
|
-
export { a as mdDownload, m as mdDownloadAttributes, c as mdDownloadGroup, b as mdDownloadGroupAttributes } from '../../mdDownload-
|
|
17
|
-
export { a as mdEbook, m as mdEbookAttributes, c as mdEbookGroup, b as mdEbookGroupAttributes } from '../../mdEbook-
|
|
18
|
-
export { a as mdFaq, m as mdFaqAttributes, c as mdFaqGroup, b as mdFaqGroupAttributes } from '../../mdFaq-
|
|
16
|
+
export { a as mdDownload, m as mdDownloadAttributes, c as mdDownloadGroup, b as mdDownloadGroupAttributes } from '../../mdDownload-CCc6eto7.js';
|
|
17
|
+
export { a as mdEbook, m as mdEbookAttributes, c as mdEbookGroup, b as mdEbookGroupAttributes } from '../../mdEbook-BqC65Ujw.js';
|
|
18
|
+
export { a as mdFaq, m as mdFaqAttributes, c as mdFaqGroup, b as mdFaqGroupAttributes } from '../../mdFaq-CHIPG3yZ.js';
|
|
19
19
|
export { mdFormAdvance_1, mdFormAdvance_1Attributes } from './mdFormAdvance_1.js';
|
|
20
20
|
export { mdFormAdvance_2, mdFormAdvance_2Attributes } from './mdFormAdvance_2.js';
|
|
21
21
|
export { a as mdInformationIndex, m as mdInformationIndexAttributes, c as mdInformationIndexGroup, b as mdInformationIndexGroupAttributes } from '../../mdInformationIndex-CcINa51c.js';
|
|
22
22
|
export { a as mdLink, m as mdLinkAttributes, c as mdLinkGroup, b as mdLinkGroupAttributes } from '../../mdLink-ExDI5jey.js';
|
|
23
|
-
export { a as mdNews, m as mdNewsAttributes, c as mdNewsGroup, b as mdNewsGroupAttributes } from '../../mdNews-
|
|
23
|
+
export { a as mdNews, m as mdNewsAttributes, c as mdNewsGroup, b as mdNewsGroupAttributes } from '../../mdNews-DfHz7Ajk.js';
|
|
24
24
|
export { mdPopup, mdPopupAttributes } from './mdPopup.js';
|
|
25
25
|
export { mdSetting, mdSettingAttributes } from './mdSetting.js';
|
|
26
26
|
export { a as mdTranslate, m as mdTranslateAttributes, c as mdTranslateGroup, b as mdTranslateGroupAttributes } from '../../mdTranslate-CburBDsQ.js';
|
|
27
27
|
export { mdVideo, mdVideoAttributes } from './mdVideo.js';
|
|
28
28
|
export { mdWords, mdWordsAttributes } from './mdWords.js';
|
|
29
29
|
export { member, memberAttributes } from './member.js';
|
|
30
|
-
export { a as msExecutive, m as msExecutiveAttributes, c as msExecutiveGroup, b as msExecutiveGroupAttributes, e as msExecutivePosition, d as msExecutivePositionAttributes } from '../../msExecutive-
|
|
30
|
+
export { a as msExecutive, m as msExecutiveAttributes, c as msExecutiveGroup, b as msExecutiveGroupAttributes, e as msExecutivePosition, d as msExecutivePositionAttributes } from '../../msExecutive-B7lTHxSZ.js';
|
|
31
31
|
export { msExecutiveBoard, msExecutiveBoardAttributes } from './msExecutiveBoard.js';
|
|
32
32
|
export { msGuidelines, msGuidelinesAttributes } from './msGuidelines.js';
|
|
33
33
|
export { msHoliday, msHolidayAttributes } from './msHoliday.js';
|
|
@@ -36,7 +36,7 @@ export { msTitle, msTitleAttributes } from './msTitle.js';
|
|
|
36
36
|
export { msWebsite, msWebsiteAttributes } from './msWebsite.js';
|
|
37
37
|
export { oauthAccessToken, oauthAccessTokenAttributes } from './oauthAccessToken.js';
|
|
38
38
|
export { oauthRefreshToken, oauthRefreshTokenAttributes } from './oauthRefreshToken.js';
|
|
39
|
-
export { a as recruitment, r as recruitmentAttributes, c as recruitmentGroup, b as recruitmentGroupAttributes } from '../../recruitment-
|
|
39
|
+
export { a as recruitment, r as recruitmentAttributes, c as recruitmentGroup, b as recruitmentGroupAttributes } from '../../recruitment-5Pi7YA8x.js';
|
|
40
40
|
export { settings, settingsAttributes } from './settings.js';
|
|
41
41
|
export { userCenterV, userCenterVAttributes } from './userCenterV.js';
|
|
42
42
|
export { userRoleV, userRoleVAttributes } from './userRoleV.js';
|
|
@@ -3229,6 +3229,12 @@ __decorateClass([
|
|
|
3229
3229
|
type: import_sequelize_typescript29.DataType.STRING(255)
|
|
3230
3230
|
})
|
|
3231
3231
|
], mdDownloadGroup.prototype, "description", 2);
|
|
3232
|
+
__decorateClass([
|
|
3233
|
+
(0, import_sequelize_typescript29.Column)({
|
|
3234
|
+
allowNull: true,
|
|
3235
|
+
type: import_sequelize_typescript29.DataType.INTEGER
|
|
3236
|
+
})
|
|
3237
|
+
], mdDownloadGroup.prototype, "sort", 2);
|
|
3232
3238
|
__decorateClass([
|
|
3233
3239
|
(0, import_sequelize_typescript29.Column)({
|
|
3234
3240
|
allowNull: true,
|
|
@@ -3516,6 +3522,12 @@ __decorateClass([
|
|
|
3516
3522
|
type: import_sequelize_typescript31.DataType.STRING(255)
|
|
3517
3523
|
})
|
|
3518
3524
|
], mdEbookGroup.prototype, "description", 2);
|
|
3525
|
+
__decorateClass([
|
|
3526
|
+
(0, import_sequelize_typescript31.Column)({
|
|
3527
|
+
allowNull: true,
|
|
3528
|
+
type: import_sequelize_typescript31.DataType.INTEGER
|
|
3529
|
+
})
|
|
3530
|
+
], mdEbookGroup.prototype, "sort", 2);
|
|
3519
3531
|
__decorateClass([
|
|
3520
3532
|
(0, import_sequelize_typescript31.Column)({
|
|
3521
3533
|
allowNull: true,
|
|
@@ -3798,6 +3810,12 @@ __decorateClass([
|
|
|
3798
3810
|
type: import_sequelize_typescript33.DataType.STRING(255)
|
|
3799
3811
|
})
|
|
3800
3812
|
], mdFaqGroup.prototype, "description", 2);
|
|
3813
|
+
__decorateClass([
|
|
3814
|
+
(0, import_sequelize_typescript33.Column)({
|
|
3815
|
+
allowNull: true,
|
|
3816
|
+
type: import_sequelize_typescript33.DataType.INTEGER
|
|
3817
|
+
})
|
|
3818
|
+
], mdFaqGroup.prototype, "sort", 2);
|
|
3801
3819
|
__decorateClass([
|
|
3802
3820
|
(0, import_sequelize_typescript33.Column)({
|
|
3803
3821
|
allowNull: true,
|
|
@@ -4735,6 +4753,12 @@ __decorateClass([
|
|
|
4735
4753
|
type: import_sequelize_typescript41.DataType.STRING(255)
|
|
4736
4754
|
})
|
|
4737
4755
|
], mdNewsGroup.prototype, "description", 2);
|
|
4756
|
+
__decorateClass([
|
|
4757
|
+
(0, import_sequelize_typescript41.Column)({
|
|
4758
|
+
allowNull: true,
|
|
4759
|
+
type: import_sequelize_typescript41.DataType.INTEGER
|
|
4760
|
+
})
|
|
4761
|
+
], mdNewsGroup.prototype, "sort", 2);
|
|
4738
4762
|
__decorateClass([
|
|
4739
4763
|
(0, import_sequelize_typescript41.Column)({
|
|
4740
4764
|
allowNull: true,
|
|
@@ -6131,6 +6155,13 @@ __decorateClass([
|
|
|
6131
6155
|
type: import_sequelize_typescript51.DataType.INTEGER
|
|
6132
6156
|
})
|
|
6133
6157
|
], msExecutivePosition.prototype, "id", 2);
|
|
6158
|
+
__decorateClass([
|
|
6159
|
+
(0, import_sequelize_typescript51.Column)({
|
|
6160
|
+
field: "group_id",
|
|
6161
|
+
allowNull: true,
|
|
6162
|
+
type: import_sequelize_typescript51.DataType.INTEGER
|
|
6163
|
+
})
|
|
6164
|
+
], msExecutivePosition.prototype, "groupId", 2);
|
|
6134
6165
|
__decorateClass([
|
|
6135
6166
|
(0, import_sequelize_typescript51.Column)({
|
|
6136
6167
|
allowNull: true,
|
|
@@ -6143,6 +6174,19 @@ __decorateClass([
|
|
|
6143
6174
|
type: import_sequelize_typescript51.DataType.STRING(255)
|
|
6144
6175
|
})
|
|
6145
6176
|
], msExecutivePosition.prototype, "description", 2);
|
|
6177
|
+
__decorateClass([
|
|
6178
|
+
(0, import_sequelize_typescript51.Column)({
|
|
6179
|
+
field: "updated_info",
|
|
6180
|
+
allowNull: true,
|
|
6181
|
+
type: import_sequelize_typescript51.DataType.STRING(255)
|
|
6182
|
+
})
|
|
6183
|
+
], msExecutivePosition.prototype, "updatedInfo", 2);
|
|
6184
|
+
__decorateClass([
|
|
6185
|
+
(0, import_sequelize_typescript51.Column)({
|
|
6186
|
+
allowNull: true,
|
|
6187
|
+
type: import_sequelize_typescript51.DataType.STRING
|
|
6188
|
+
})
|
|
6189
|
+
], msExecutivePosition.prototype, "remark", 2);
|
|
6146
6190
|
__decorateClass([
|
|
6147
6191
|
(0, import_sequelize_typescript51.Column)({
|
|
6148
6192
|
allowNull: true,
|
|
@@ -6220,13 +6264,12 @@ __decorateClass([
|
|
|
6220
6264
|
})
|
|
6221
6265
|
], msExecutive.prototype, "groupId", 2);
|
|
6222
6266
|
__decorateClass([
|
|
6223
|
-
(0, import_sequelize_typescript52.ForeignKey)(() => msExecutivePosition),
|
|
6224
6267
|
(0, import_sequelize_typescript52.Column)({
|
|
6225
|
-
field: "
|
|
6268
|
+
field: "level_id",
|
|
6226
6269
|
allowNull: true,
|
|
6227
6270
|
type: import_sequelize_typescript52.DataType.INTEGER
|
|
6228
6271
|
})
|
|
6229
|
-
], msExecutive.prototype, "
|
|
6272
|
+
], msExecutive.prototype, "levelId", 2);
|
|
6230
6273
|
__decorateClass([
|
|
6231
6274
|
(0, import_sequelize_typescript52.Column)({
|
|
6232
6275
|
field: "position_name",
|
|
@@ -6307,7 +6350,7 @@ __decorateClass([
|
|
|
6307
6350
|
__decorateClass([
|
|
6308
6351
|
(0, import_sequelize_typescript52.Column)({
|
|
6309
6352
|
allowNull: true,
|
|
6310
|
-
type: import_sequelize_typescript52.DataType.
|
|
6353
|
+
type: import_sequelize_typescript52.DataType.INTEGER
|
|
6311
6354
|
})
|
|
6312
6355
|
], msExecutive.prototype, "status", 2);
|
|
6313
6356
|
__decorateClass([
|
|
@@ -6344,6 +6387,14 @@ __decorateClass([
|
|
|
6344
6387
|
type: import_sequelize_typescript52.DataType.DATE
|
|
6345
6388
|
})
|
|
6346
6389
|
], msExecutive.prototype, "updatedDate", 2);
|
|
6390
|
+
__decorateClass([
|
|
6391
|
+
(0, import_sequelize_typescript52.ForeignKey)(() => msExecutivePosition),
|
|
6392
|
+
(0, import_sequelize_typescript52.Column)({
|
|
6393
|
+
field: "position_id",
|
|
6394
|
+
allowNull: true,
|
|
6395
|
+
type: import_sequelize_typescript52.DataType.INTEGER
|
|
6396
|
+
})
|
|
6397
|
+
], msExecutive.prototype, "positionId", 2);
|
|
6347
6398
|
__decorateClass([
|
|
6348
6399
|
(0, import_sequelize_typescript52.BelongsTo)(() => msExecutiveGroup)
|
|
6349
6400
|
], msExecutive.prototype, "msExecutiveGroup", 2);
|
|
@@ -7119,6 +7170,12 @@ __decorateClass([
|
|
|
7119
7170
|
type: import_sequelize_typescript62.DataType.INTEGER
|
|
7120
7171
|
})
|
|
7121
7172
|
], recruitment.prototype, "calledPosition", 2);
|
|
7173
|
+
__decorateClass([
|
|
7174
|
+
(0, import_sequelize_typescript62.Column)({
|
|
7175
|
+
allowNull: true,
|
|
7176
|
+
type: import_sequelize_typescript62.DataType.INTEGER
|
|
7177
|
+
})
|
|
7178
|
+
], recruitment.prototype, "sort", 2);
|
|
7122
7179
|
__decorateClass([
|
|
7123
7180
|
(0, import_sequelize_typescript62.Column)({
|
|
7124
7181
|
allowNull: true,
|
|
@@ -7153,6 +7210,13 @@ __decorateClass([
|
|
|
7153
7210
|
type: import_sequelize_typescript62.DataType.DATE
|
|
7154
7211
|
})
|
|
7155
7212
|
], recruitment.prototype, "updatedDate", 2);
|
|
7213
|
+
__decorateClass([
|
|
7214
|
+
(0, import_sequelize_typescript62.Column)({
|
|
7215
|
+
field: "ref_id",
|
|
7216
|
+
allowNull: true,
|
|
7217
|
+
type: import_sequelize_typescript62.DataType.INTEGER
|
|
7218
|
+
})
|
|
7219
|
+
], recruitment.prototype, "refId", 2);
|
|
7156
7220
|
__decorateClass([
|
|
7157
7221
|
(0, import_sequelize_typescript62.BelongsTo)(() => recruitmentGroup)
|
|
7158
7222
|
], recruitment.prototype, "recruitmentGroup", 2);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { a as mdDownload, m as mdDownloadAttributes } from '../../mdDownload-
|
|
2
|
+
export { a as mdDownload, m as mdDownloadAttributes } from '../../mdDownload-CCc6eto7.js';
|
|
@@ -75,6 +75,12 @@ __decorateClass([
|
|
|
75
75
|
type: import_sequelize_typescript.DataType.STRING(255)
|
|
76
76
|
})
|
|
77
77
|
], mdDownloadGroup.prototype, "description", 2);
|
|
78
|
+
__decorateClass([
|
|
79
|
+
(0, import_sequelize_typescript.Column)({
|
|
80
|
+
allowNull: true,
|
|
81
|
+
type: import_sequelize_typescript.DataType.INTEGER
|
|
82
|
+
})
|
|
83
|
+
], mdDownloadGroup.prototype, "sort", 2);
|
|
78
84
|
__decorateClass([
|
|
79
85
|
(0, import_sequelize_typescript.Column)({
|
|
80
86
|
allowNull: true,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { c as mdDownloadGroup, b as mdDownloadGroupAttributes } from '../../mdDownload-
|
|
2
|
+
export { c as mdDownloadGroup, b as mdDownloadGroupAttributes } from '../../mdDownload-CCc6eto7.js';
|
|
@@ -271,6 +271,12 @@ __decorateClass([
|
|
|
271
271
|
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
272
272
|
})
|
|
273
273
|
], mdDownloadGroup.prototype, "description", 2);
|
|
274
|
+
__decorateClass([
|
|
275
|
+
(0, import_sequelize_typescript2.Column)({
|
|
276
|
+
allowNull: true,
|
|
277
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
278
|
+
})
|
|
279
|
+
], mdDownloadGroup.prototype, "sort", 2);
|
|
274
280
|
__decorateClass([
|
|
275
281
|
(0, import_sequelize_typescript2.Column)({
|
|
276
282
|
allowNull: true,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { a as mdEbook, m as mdEbookAttributes } from '../../mdEbook-
|
|
2
|
+
export { a as mdEbook, m as mdEbookAttributes } from '../../mdEbook-BqC65Ujw.js';
|
|
@@ -75,6 +75,12 @@ __decorateClass([
|
|
|
75
75
|
type: import_sequelize_typescript.DataType.STRING(255)
|
|
76
76
|
})
|
|
77
77
|
], mdEbookGroup.prototype, "description", 2);
|
|
78
|
+
__decorateClass([
|
|
79
|
+
(0, import_sequelize_typescript.Column)({
|
|
80
|
+
allowNull: true,
|
|
81
|
+
type: import_sequelize_typescript.DataType.INTEGER
|
|
82
|
+
})
|
|
83
|
+
], mdEbookGroup.prototype, "sort", 2);
|
|
78
84
|
__decorateClass([
|
|
79
85
|
(0, import_sequelize_typescript.Column)({
|
|
80
86
|
allowNull: true,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { c as mdEbookGroup, b as mdEbookGroupAttributes } from '../../mdEbook-
|
|
2
|
+
export { c as mdEbookGroup, b as mdEbookGroupAttributes } from '../../mdEbook-BqC65Ujw.js';
|
|
@@ -266,6 +266,12 @@ __decorateClass([
|
|
|
266
266
|
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
267
267
|
})
|
|
268
268
|
], mdEbookGroup.prototype, "description", 2);
|
|
269
|
+
__decorateClass([
|
|
270
|
+
(0, import_sequelize_typescript2.Column)({
|
|
271
|
+
allowNull: true,
|
|
272
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
273
|
+
})
|
|
274
|
+
], mdEbookGroup.prototype, "sort", 2);
|
|
269
275
|
__decorateClass([
|
|
270
276
|
(0, import_sequelize_typescript2.Column)({
|
|
271
277
|
allowNull: true,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { a as mdFaq, m as mdFaqAttributes } from '../../mdFaq-
|
|
2
|
+
export { a as mdFaq, m as mdFaqAttributes } from '../../mdFaq-CHIPG3yZ.js';
|
|
@@ -75,6 +75,12 @@ __decorateClass([
|
|
|
75
75
|
type: import_sequelize_typescript.DataType.STRING(255)
|
|
76
76
|
})
|
|
77
77
|
], mdFaqGroup.prototype, "description", 2);
|
|
78
|
+
__decorateClass([
|
|
79
|
+
(0, import_sequelize_typescript.Column)({
|
|
80
|
+
allowNull: true,
|
|
81
|
+
type: import_sequelize_typescript.DataType.INTEGER
|
|
82
|
+
})
|
|
83
|
+
], mdFaqGroup.prototype, "sort", 2);
|
|
78
84
|
__decorateClass([
|
|
79
85
|
(0, import_sequelize_typescript.Column)({
|
|
80
86
|
allowNull: true,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { c as mdFaqGroup, b as mdFaqGroupAttributes } from '../../mdFaq-
|
|
2
|
+
export { c as mdFaqGroup, b as mdFaqGroupAttributes } from '../../mdFaq-CHIPG3yZ.js';
|
|
@@ -221,6 +221,12 @@ __decorateClass([
|
|
|
221
221
|
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
222
222
|
})
|
|
223
223
|
], mdFaqGroup.prototype, "description", 2);
|
|
224
|
+
__decorateClass([
|
|
225
|
+
(0, import_sequelize_typescript2.Column)({
|
|
226
|
+
allowNull: true,
|
|
227
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
228
|
+
})
|
|
229
|
+
], mdFaqGroup.prototype, "sort", 2);
|
|
224
230
|
__decorateClass([
|
|
225
231
|
(0, import_sequelize_typescript2.Column)({
|
|
226
232
|
allowNull: true,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { a as mdNews, m as mdNewsAttributes } from '../../mdNews-
|
|
2
|
+
export { a as mdNews, m as mdNewsAttributes } from '../../mdNews-DfHz7Ajk.js';
|
|
@@ -75,6 +75,12 @@ __decorateClass([
|
|
|
75
75
|
type: import_sequelize_typescript.DataType.STRING(255)
|
|
76
76
|
})
|
|
77
77
|
], mdNewsGroup.prototype, "description", 2);
|
|
78
|
+
__decorateClass([
|
|
79
|
+
(0, import_sequelize_typescript.Column)({
|
|
80
|
+
allowNull: true,
|
|
81
|
+
type: import_sequelize_typescript.DataType.INTEGER
|
|
82
|
+
})
|
|
83
|
+
], mdNewsGroup.prototype, "sort", 2);
|
|
78
84
|
__decorateClass([
|
|
79
85
|
(0, import_sequelize_typescript.Column)({
|
|
80
86
|
allowNull: true,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { c as mdNewsGroup, b as mdNewsGroupAttributes } from '../../mdNews-
|
|
2
|
+
export { c as mdNewsGroup, b as mdNewsGroupAttributes } from '../../mdNews-DfHz7Ajk.js';
|
|
@@ -271,6 +271,12 @@ __decorateClass([
|
|
|
271
271
|
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
272
272
|
})
|
|
273
273
|
], mdNewsGroup.prototype, "description", 2);
|
|
274
|
+
__decorateClass([
|
|
275
|
+
(0, import_sequelize_typescript2.Column)({
|
|
276
|
+
allowNull: true,
|
|
277
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
278
|
+
})
|
|
279
|
+
], mdNewsGroup.prototype, "sort", 2);
|
|
274
280
|
__decorateClass([
|
|
275
281
|
(0, import_sequelize_typescript2.Column)({
|
|
276
282
|
allowNull: true,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { a as msExecutive, m as msExecutiveAttributes } from '../../msExecutive-
|
|
2
|
+
export { a as msExecutive, m as msExecutiveAttributes } from '../../msExecutive-B7lTHxSZ.js';
|
|
@@ -145,6 +145,13 @@ __decorateClass([
|
|
|
145
145
|
type: import_sequelize_typescript2.DataType.INTEGER
|
|
146
146
|
})
|
|
147
147
|
], msExecutivePosition.prototype, "id", 2);
|
|
148
|
+
__decorateClass([
|
|
149
|
+
(0, import_sequelize_typescript2.Column)({
|
|
150
|
+
field: "group_id",
|
|
151
|
+
allowNull: true,
|
|
152
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
153
|
+
})
|
|
154
|
+
], msExecutivePosition.prototype, "groupId", 2);
|
|
148
155
|
__decorateClass([
|
|
149
156
|
(0, import_sequelize_typescript2.Column)({
|
|
150
157
|
allowNull: true,
|
|
@@ -157,6 +164,19 @@ __decorateClass([
|
|
|
157
164
|
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
158
165
|
})
|
|
159
166
|
], msExecutivePosition.prototype, "description", 2);
|
|
167
|
+
__decorateClass([
|
|
168
|
+
(0, import_sequelize_typescript2.Column)({
|
|
169
|
+
field: "updated_info",
|
|
170
|
+
allowNull: true,
|
|
171
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
172
|
+
})
|
|
173
|
+
], msExecutivePosition.prototype, "updatedInfo", 2);
|
|
174
|
+
__decorateClass([
|
|
175
|
+
(0, import_sequelize_typescript2.Column)({
|
|
176
|
+
allowNull: true,
|
|
177
|
+
type: import_sequelize_typescript2.DataType.STRING
|
|
178
|
+
})
|
|
179
|
+
], msExecutivePosition.prototype, "remark", 2);
|
|
160
180
|
__decorateClass([
|
|
161
181
|
(0, import_sequelize_typescript2.Column)({
|
|
162
182
|
allowNull: true,
|
|
@@ -234,13 +254,12 @@ __decorateClass([
|
|
|
234
254
|
})
|
|
235
255
|
], msExecutive.prototype, "groupId", 2);
|
|
236
256
|
__decorateClass([
|
|
237
|
-
(0, import_sequelize_typescript3.ForeignKey)(() => msExecutivePosition),
|
|
238
257
|
(0, import_sequelize_typescript3.Column)({
|
|
239
|
-
field: "
|
|
258
|
+
field: "level_id",
|
|
240
259
|
allowNull: true,
|
|
241
260
|
type: import_sequelize_typescript3.DataType.INTEGER
|
|
242
261
|
})
|
|
243
|
-
], msExecutive.prototype, "
|
|
262
|
+
], msExecutive.prototype, "levelId", 2);
|
|
244
263
|
__decorateClass([
|
|
245
264
|
(0, import_sequelize_typescript3.Column)({
|
|
246
265
|
field: "position_name",
|
|
@@ -321,7 +340,7 @@ __decorateClass([
|
|
|
321
340
|
__decorateClass([
|
|
322
341
|
(0, import_sequelize_typescript3.Column)({
|
|
323
342
|
allowNull: true,
|
|
324
|
-
type: import_sequelize_typescript3.DataType.
|
|
343
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
325
344
|
})
|
|
326
345
|
], msExecutive.prototype, "status", 2);
|
|
327
346
|
__decorateClass([
|
|
@@ -358,6 +377,14 @@ __decorateClass([
|
|
|
358
377
|
type: import_sequelize_typescript3.DataType.DATE
|
|
359
378
|
})
|
|
360
379
|
], msExecutive.prototype, "updatedDate", 2);
|
|
380
|
+
__decorateClass([
|
|
381
|
+
(0, import_sequelize_typescript3.ForeignKey)(() => msExecutivePosition),
|
|
382
|
+
(0, import_sequelize_typescript3.Column)({
|
|
383
|
+
field: "position_id",
|
|
384
|
+
allowNull: true,
|
|
385
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
386
|
+
})
|
|
387
|
+
], msExecutive.prototype, "positionId", 2);
|
|
361
388
|
__decorateClass([
|
|
362
389
|
(0, import_sequelize_typescript3.BelongsTo)(() => msExecutiveGroup)
|
|
363
390
|
], msExecutive.prototype, "msExecutiveGroup", 2);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { c as msExecutiveGroup, b as msExecutiveGroupAttributes } from '../../msExecutive-
|
|
2
|
+
export { c as msExecutiveGroup, b as msExecutiveGroupAttributes } from '../../msExecutive-B7lTHxSZ.js';
|
|
@@ -47,6 +47,13 @@ __decorateClass([
|
|
|
47
47
|
type: import_sequelize_typescript.DataType.INTEGER
|
|
48
48
|
})
|
|
49
49
|
], msExecutivePosition.prototype, "id", 2);
|
|
50
|
+
__decorateClass([
|
|
51
|
+
(0, import_sequelize_typescript.Column)({
|
|
52
|
+
field: "group_id",
|
|
53
|
+
allowNull: true,
|
|
54
|
+
type: import_sequelize_typescript.DataType.INTEGER
|
|
55
|
+
})
|
|
56
|
+
], msExecutivePosition.prototype, "groupId", 2);
|
|
50
57
|
__decorateClass([
|
|
51
58
|
(0, import_sequelize_typescript.Column)({
|
|
52
59
|
allowNull: true,
|
|
@@ -59,6 +66,19 @@ __decorateClass([
|
|
|
59
66
|
type: import_sequelize_typescript.DataType.STRING(255)
|
|
60
67
|
})
|
|
61
68
|
], msExecutivePosition.prototype, "description", 2);
|
|
69
|
+
__decorateClass([
|
|
70
|
+
(0, import_sequelize_typescript.Column)({
|
|
71
|
+
field: "updated_info",
|
|
72
|
+
allowNull: true,
|
|
73
|
+
type: import_sequelize_typescript.DataType.STRING(255)
|
|
74
|
+
})
|
|
75
|
+
], msExecutivePosition.prototype, "updatedInfo", 2);
|
|
76
|
+
__decorateClass([
|
|
77
|
+
(0, import_sequelize_typescript.Column)({
|
|
78
|
+
allowNull: true,
|
|
79
|
+
type: import_sequelize_typescript.DataType.STRING
|
|
80
|
+
})
|
|
81
|
+
], msExecutivePosition.prototype, "remark", 2);
|
|
62
82
|
__decorateClass([
|
|
63
83
|
(0, import_sequelize_typescript.Column)({
|
|
64
84
|
allowNull: true,
|
|
@@ -136,13 +156,12 @@ __decorateClass([
|
|
|
136
156
|
})
|
|
137
157
|
], msExecutive.prototype, "groupId", 2);
|
|
138
158
|
__decorateClass([
|
|
139
|
-
(0, import_sequelize_typescript2.ForeignKey)(() => msExecutivePosition),
|
|
140
159
|
(0, import_sequelize_typescript2.Column)({
|
|
141
|
-
field: "
|
|
160
|
+
field: "level_id",
|
|
142
161
|
allowNull: true,
|
|
143
162
|
type: import_sequelize_typescript2.DataType.INTEGER
|
|
144
163
|
})
|
|
145
|
-
], msExecutive.prototype, "
|
|
164
|
+
], msExecutive.prototype, "levelId", 2);
|
|
146
165
|
__decorateClass([
|
|
147
166
|
(0, import_sequelize_typescript2.Column)({
|
|
148
167
|
field: "position_name",
|
|
@@ -223,7 +242,7 @@ __decorateClass([
|
|
|
223
242
|
__decorateClass([
|
|
224
243
|
(0, import_sequelize_typescript2.Column)({
|
|
225
244
|
allowNull: true,
|
|
226
|
-
type: import_sequelize_typescript2.DataType.
|
|
245
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
227
246
|
})
|
|
228
247
|
], msExecutive.prototype, "status", 2);
|
|
229
248
|
__decorateClass([
|
|
@@ -260,6 +279,14 @@ __decorateClass([
|
|
|
260
279
|
type: import_sequelize_typescript2.DataType.DATE
|
|
261
280
|
})
|
|
262
281
|
], msExecutive.prototype, "updatedDate", 2);
|
|
282
|
+
__decorateClass([
|
|
283
|
+
(0, import_sequelize_typescript2.ForeignKey)(() => msExecutivePosition),
|
|
284
|
+
(0, import_sequelize_typescript2.Column)({
|
|
285
|
+
field: "position_id",
|
|
286
|
+
allowNull: true,
|
|
287
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
288
|
+
})
|
|
289
|
+
], msExecutive.prototype, "positionId", 2);
|
|
263
290
|
__decorateClass([
|
|
264
291
|
(0, import_sequelize_typescript2.BelongsTo)(() => msExecutiveGroup)
|
|
265
292
|
], msExecutive.prototype, "msExecutiveGroup", 2);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { e as msExecutivePosition, d as msExecutivePositionAttributes } from '../../msExecutive-
|
|
2
|
+
export { e as msExecutivePosition, d as msExecutivePositionAttributes } from '../../msExecutive-B7lTHxSZ.js';
|
|
@@ -156,13 +156,12 @@ __decorateClass([
|
|
|
156
156
|
})
|
|
157
157
|
], msExecutive.prototype, "groupId", 2);
|
|
158
158
|
__decorateClass([
|
|
159
|
-
(0, import_sequelize_typescript2.ForeignKey)(() => msExecutivePosition),
|
|
160
159
|
(0, import_sequelize_typescript2.Column)({
|
|
161
|
-
field: "
|
|
160
|
+
field: "level_id",
|
|
162
161
|
allowNull: true,
|
|
163
162
|
type: import_sequelize_typescript2.DataType.INTEGER
|
|
164
163
|
})
|
|
165
|
-
], msExecutive.prototype, "
|
|
164
|
+
], msExecutive.prototype, "levelId", 2);
|
|
166
165
|
__decorateClass([
|
|
167
166
|
(0, import_sequelize_typescript2.Column)({
|
|
168
167
|
field: "position_name",
|
|
@@ -243,7 +242,7 @@ __decorateClass([
|
|
|
243
242
|
__decorateClass([
|
|
244
243
|
(0, import_sequelize_typescript2.Column)({
|
|
245
244
|
allowNull: true,
|
|
246
|
-
type: import_sequelize_typescript2.DataType.
|
|
245
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
247
246
|
})
|
|
248
247
|
], msExecutive.prototype, "status", 2);
|
|
249
248
|
__decorateClass([
|
|
@@ -280,6 +279,14 @@ __decorateClass([
|
|
|
280
279
|
type: import_sequelize_typescript2.DataType.DATE
|
|
281
280
|
})
|
|
282
281
|
], msExecutive.prototype, "updatedDate", 2);
|
|
282
|
+
__decorateClass([
|
|
283
|
+
(0, import_sequelize_typescript2.ForeignKey)(() => msExecutivePosition),
|
|
284
|
+
(0, import_sequelize_typescript2.Column)({
|
|
285
|
+
field: "position_id",
|
|
286
|
+
allowNull: true,
|
|
287
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
288
|
+
})
|
|
289
|
+
], msExecutive.prototype, "positionId", 2);
|
|
283
290
|
__decorateClass([
|
|
284
291
|
(0, import_sequelize_typescript2.BelongsTo)(() => msExecutiveGroup)
|
|
285
292
|
], msExecutive.prototype, "msExecutiveGroup", 2);
|
|
@@ -303,6 +310,13 @@ __decorateClass([
|
|
|
303
310
|
type: import_sequelize_typescript3.DataType.INTEGER
|
|
304
311
|
})
|
|
305
312
|
], msExecutivePosition.prototype, "id", 2);
|
|
313
|
+
__decorateClass([
|
|
314
|
+
(0, import_sequelize_typescript3.Column)({
|
|
315
|
+
field: "group_id",
|
|
316
|
+
allowNull: true,
|
|
317
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
318
|
+
})
|
|
319
|
+
], msExecutivePosition.prototype, "groupId", 2);
|
|
306
320
|
__decorateClass([
|
|
307
321
|
(0, import_sequelize_typescript3.Column)({
|
|
308
322
|
allowNull: true,
|
|
@@ -315,6 +329,19 @@ __decorateClass([
|
|
|
315
329
|
type: import_sequelize_typescript3.DataType.STRING(255)
|
|
316
330
|
})
|
|
317
331
|
], msExecutivePosition.prototype, "description", 2);
|
|
332
|
+
__decorateClass([
|
|
333
|
+
(0, import_sequelize_typescript3.Column)({
|
|
334
|
+
field: "updated_info",
|
|
335
|
+
allowNull: true,
|
|
336
|
+
type: import_sequelize_typescript3.DataType.STRING(255)
|
|
337
|
+
})
|
|
338
|
+
], msExecutivePosition.prototype, "updatedInfo", 2);
|
|
339
|
+
__decorateClass([
|
|
340
|
+
(0, import_sequelize_typescript3.Column)({
|
|
341
|
+
allowNull: true,
|
|
342
|
+
type: import_sequelize_typescript3.DataType.STRING
|
|
343
|
+
})
|
|
344
|
+
], msExecutivePosition.prototype, "remark", 2);
|
|
318
345
|
__decorateClass([
|
|
319
346
|
(0, import_sequelize_typescript3.Column)({
|
|
320
347
|
allowNull: true,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { a as recruitment, r as recruitmentAttributes } from '../../recruitment-
|
|
2
|
+
export { a as recruitment, r as recruitmentAttributes } from '../../recruitment-5Pi7YA8x.js';
|
|
@@ -179,6 +179,12 @@ __decorateClass([
|
|
|
179
179
|
type: import_sequelize_typescript2.DataType.INTEGER
|
|
180
180
|
})
|
|
181
181
|
], recruitment.prototype, "calledPosition", 2);
|
|
182
|
+
__decorateClass([
|
|
183
|
+
(0, import_sequelize_typescript2.Column)({
|
|
184
|
+
allowNull: true,
|
|
185
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
186
|
+
})
|
|
187
|
+
], recruitment.prototype, "sort", 2);
|
|
182
188
|
__decorateClass([
|
|
183
189
|
(0, import_sequelize_typescript2.Column)({
|
|
184
190
|
allowNull: true,
|
|
@@ -213,6 +219,13 @@ __decorateClass([
|
|
|
213
219
|
type: import_sequelize_typescript2.DataType.DATE
|
|
214
220
|
})
|
|
215
221
|
], recruitment.prototype, "updatedDate", 2);
|
|
222
|
+
__decorateClass([
|
|
223
|
+
(0, import_sequelize_typescript2.Column)({
|
|
224
|
+
field: "ref_id",
|
|
225
|
+
allowNull: true,
|
|
226
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
227
|
+
})
|
|
228
|
+
], recruitment.prototype, "refId", 2);
|
|
216
229
|
__decorateClass([
|
|
217
230
|
(0, import_sequelize_typescript2.BelongsTo)(() => recruitmentGroup)
|
|
218
231
|
], recruitment.prototype, "recruitmentGroup", 2);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { c as recruitmentGroup, b as recruitmentGroupAttributes } from '../../recruitment-
|
|
2
|
+
export { c as recruitmentGroup, b as recruitmentGroupAttributes } from '../../recruitment-5Pi7YA8x.js';
|
|
@@ -93,6 +93,12 @@ __decorateClass([
|
|
|
93
93
|
type: import_sequelize_typescript.DataType.INTEGER
|
|
94
94
|
})
|
|
95
95
|
], recruitment.prototype, "calledPosition", 2);
|
|
96
|
+
__decorateClass([
|
|
97
|
+
(0, import_sequelize_typescript.Column)({
|
|
98
|
+
allowNull: true,
|
|
99
|
+
type: import_sequelize_typescript.DataType.INTEGER
|
|
100
|
+
})
|
|
101
|
+
], recruitment.prototype, "sort", 2);
|
|
96
102
|
__decorateClass([
|
|
97
103
|
(0, import_sequelize_typescript.Column)({
|
|
98
104
|
allowNull: true,
|
|
@@ -127,6 +133,13 @@ __decorateClass([
|
|
|
127
133
|
type: import_sequelize_typescript.DataType.DATE
|
|
128
134
|
})
|
|
129
135
|
], recruitment.prototype, "updatedDate", 2);
|
|
136
|
+
__decorateClass([
|
|
137
|
+
(0, import_sequelize_typescript.Column)({
|
|
138
|
+
field: "ref_id",
|
|
139
|
+
allowNull: true,
|
|
140
|
+
type: import_sequelize_typescript.DataType.INTEGER
|
|
141
|
+
})
|
|
142
|
+
], recruitment.prototype, "refId", 2);
|
|
130
143
|
__decorateClass([
|
|
131
144
|
(0, import_sequelize_typescript.BelongsTo)(() => recruitmentGroup)
|
|
132
145
|
], recruitment.prototype, "recruitmentGroup", 2);
|
|
@@ -7,6 +7,7 @@ interface mdDownloadGroupAttributes {
|
|
|
7
7
|
userId?: number;
|
|
8
8
|
name: string;
|
|
9
9
|
description?: string;
|
|
10
|
+
sort?: number;
|
|
10
11
|
status?: number;
|
|
11
12
|
createdBy?: string;
|
|
12
13
|
createdDate?: Date;
|
|
@@ -20,6 +21,7 @@ declare class mdDownloadGroup extends Model<mdDownloadGroupAttributes, mdDownloa
|
|
|
20
21
|
userId?: number;
|
|
21
22
|
name: string;
|
|
22
23
|
description?: string;
|
|
24
|
+
sort?: number;
|
|
23
25
|
status?: number;
|
|
24
26
|
createdBy?: string;
|
|
25
27
|
createdDate?: Date;
|
|
@@ -7,6 +7,7 @@ interface mdEbookGroupAttributes {
|
|
|
7
7
|
userId?: number;
|
|
8
8
|
name: string;
|
|
9
9
|
description?: string;
|
|
10
|
+
sort?: number;
|
|
10
11
|
status?: number;
|
|
11
12
|
createdBy?: string;
|
|
12
13
|
createdDate?: Date;
|
|
@@ -20,6 +21,7 @@ declare class mdEbookGroup extends Model<mdEbookGroupAttributes, mdEbookGroupAtt
|
|
|
20
21
|
userId?: number;
|
|
21
22
|
name: string;
|
|
22
23
|
description?: string;
|
|
24
|
+
sort?: number;
|
|
23
25
|
status?: number;
|
|
24
26
|
createdBy?: string;
|
|
25
27
|
createdDate?: Date;
|
|
@@ -7,6 +7,7 @@ interface mdFaqGroupAttributes {
|
|
|
7
7
|
userId?: number;
|
|
8
8
|
name: string;
|
|
9
9
|
description?: string;
|
|
10
|
+
sort?: number;
|
|
10
11
|
status?: number;
|
|
11
12
|
createdBy?: string;
|
|
12
13
|
createdDate?: Date;
|
|
@@ -20,6 +21,7 @@ declare class mdFaqGroup extends Model<mdFaqGroupAttributes, mdFaqGroupAttribute
|
|
|
20
21
|
userId?: number;
|
|
21
22
|
name: string;
|
|
22
23
|
description?: string;
|
|
24
|
+
sort?: number;
|
|
23
25
|
status?: number;
|
|
24
26
|
createdBy?: string;
|
|
25
27
|
createdDate?: Date;
|
|
@@ -7,6 +7,7 @@ interface mdNewsGroupAttributes {
|
|
|
7
7
|
userId?: number;
|
|
8
8
|
name: string;
|
|
9
9
|
description?: string;
|
|
10
|
+
sort?: number;
|
|
10
11
|
status?: number;
|
|
11
12
|
createdBy?: string;
|
|
12
13
|
createdDate?: Date;
|
|
@@ -20,6 +21,7 @@ declare class mdNewsGroup extends Model<mdNewsGroupAttributes, mdNewsGroupAttrib
|
|
|
20
21
|
userId?: number;
|
|
21
22
|
name: string;
|
|
22
23
|
description?: string;
|
|
24
|
+
sort?: number;
|
|
23
25
|
status?: number;
|
|
24
26
|
createdBy?: string;
|
|
25
27
|
createdDate?: Date;
|
|
@@ -34,8 +34,11 @@ declare class msExecutiveGroup extends Model<msExecutiveGroupAttributes, msExecu
|
|
|
34
34
|
|
|
35
35
|
interface msExecutivePositionAttributes {
|
|
36
36
|
id?: number;
|
|
37
|
+
groupId?: number;
|
|
37
38
|
name?: string;
|
|
38
39
|
description?: string;
|
|
40
|
+
updatedInfo?: string;
|
|
41
|
+
remark?: string;
|
|
39
42
|
sort?: number;
|
|
40
43
|
status?: number;
|
|
41
44
|
info?: object;
|
|
@@ -46,8 +49,11 @@ interface msExecutivePositionAttributes {
|
|
|
46
49
|
}
|
|
47
50
|
declare class msExecutivePosition extends Model<msExecutivePositionAttributes, msExecutivePositionAttributes> implements msExecutivePositionAttributes {
|
|
48
51
|
id?: number;
|
|
52
|
+
groupId?: number;
|
|
49
53
|
name?: string;
|
|
50
54
|
description?: string;
|
|
55
|
+
updatedInfo?: string;
|
|
56
|
+
remark?: string;
|
|
51
57
|
sort?: number;
|
|
52
58
|
status?: number;
|
|
53
59
|
info?: object;
|
|
@@ -61,7 +67,7 @@ declare class msExecutivePosition extends Model<msExecutivePositionAttributes, m
|
|
|
61
67
|
interface msExecutiveAttributes {
|
|
62
68
|
id?: number;
|
|
63
69
|
groupId?: number;
|
|
64
|
-
|
|
70
|
+
levelId?: number;
|
|
65
71
|
positionName?: string;
|
|
66
72
|
positionOther?: string;
|
|
67
73
|
titleId?: number;
|
|
@@ -74,17 +80,18 @@ interface msExecutiveAttributes {
|
|
|
74
80
|
experience?: string;
|
|
75
81
|
image?: string;
|
|
76
82
|
sort?: number;
|
|
77
|
-
status?:
|
|
83
|
+
status?: number;
|
|
78
84
|
info?: object;
|
|
79
85
|
createdBy?: string;
|
|
80
86
|
createdDate?: Date;
|
|
81
87
|
updatedBy?: string;
|
|
82
88
|
updatedDate?: Date;
|
|
89
|
+
positionId?: number;
|
|
83
90
|
}
|
|
84
91
|
declare class msExecutive extends Model<msExecutiveAttributes, msExecutiveAttributes> implements msExecutiveAttributes {
|
|
85
92
|
id?: number;
|
|
86
93
|
groupId?: number;
|
|
87
|
-
|
|
94
|
+
levelId?: number;
|
|
88
95
|
positionName?: string;
|
|
89
96
|
positionOther?: string;
|
|
90
97
|
titleId?: number;
|
|
@@ -97,12 +104,13 @@ declare class msExecutive extends Model<msExecutiveAttributes, msExecutiveAttrib
|
|
|
97
104
|
experience?: string;
|
|
98
105
|
image?: string;
|
|
99
106
|
sort?: number;
|
|
100
|
-
status?:
|
|
107
|
+
status?: number;
|
|
101
108
|
info?: object;
|
|
102
109
|
createdBy?: string;
|
|
103
110
|
createdDate?: Date;
|
|
104
111
|
updatedBy?: string;
|
|
105
112
|
updatedDate?: Date;
|
|
113
|
+
positionId?: number;
|
|
106
114
|
msExecutiveGroup?: msExecutiveGroup;
|
|
107
115
|
msExecutivePosition?: msExecutivePosition;
|
|
108
116
|
}
|
package/package.json
CHANGED
|
@@ -37,11 +37,13 @@ interface recruitmentAttributes {
|
|
|
37
37
|
accountAge?: number;
|
|
38
38
|
accountExpires?: string;
|
|
39
39
|
calledPosition?: number;
|
|
40
|
+
sort?: number;
|
|
40
41
|
status?: number;
|
|
41
42
|
createdBy?: string;
|
|
42
43
|
createdDate?: Date;
|
|
43
44
|
updatedBy?: string;
|
|
44
45
|
updatedDate?: Date;
|
|
46
|
+
refId?: number;
|
|
45
47
|
}
|
|
46
48
|
declare class recruitment extends Model<recruitmentAttributes, recruitmentAttributes> implements recruitmentAttributes {
|
|
47
49
|
id?: number;
|
|
@@ -52,11 +54,13 @@ declare class recruitment extends Model<recruitmentAttributes, recruitmentAttrib
|
|
|
52
54
|
accountAge?: number;
|
|
53
55
|
accountExpires?: string;
|
|
54
56
|
calledPosition?: number;
|
|
57
|
+
sort?: number;
|
|
55
58
|
status?: number;
|
|
56
59
|
createdBy?: string;
|
|
57
60
|
createdDate?: Date;
|
|
58
61
|
updatedBy?: string;
|
|
59
62
|
updatedDate?: Date;
|
|
63
|
+
refId?: number;
|
|
60
64
|
recruitmentGroup?: recruitmentGroup;
|
|
61
65
|
}
|
|
62
66
|
|