@admc-go-th/admc-library 1.0.129 → 1.0.130
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/appQueue-QJ9ECucz.d.ts +158 -0
- package/databases/schema/appQueue.ts +75 -1
- package/databases/schema/appReportCorruption.ts +1 -1
- package/databases/schema/files.ts +7 -0
- package/databases/schema/mdBanner.ts +8 -0
- package/databases/schema/mdEbookGroup.ts +8 -0
- package/databases/schema/msConsultChannels.ts +14 -1
- package/databases/schema/msWebsite.ts +7 -1
- package/databases/tables/appQueue.d.ts +2 -62
- package/databases/tables/appQueue.js +365 -53
- package/databases/tables/appReportCorruption.js +1 -1
- package/databases/tables/appReportCorruptionTransaction.js +1 -1
- package/databases/tables/files.d.ts +1 -1
- package/databases/tables/files.js +13 -0
- package/databases/tables/index.d.ts +3 -5
- package/databases/tables/index.js +2681 -2579
- package/databases/tables/mdBanner.d.ts +1 -1
- package/databases/tables/mdBanner.js +13 -0
- package/databases/tables/mdEbook.d.ts +1 -1
- package/databases/tables/mdEbook.js +7 -0
- package/databases/tables/mdEbookGroup.d.ts +1 -1
- package/databases/tables/mdEbookGroup.js +7 -0
- package/databases/tables/msConsultChannels.d.ts +2 -24
- package/databases/tables/msConsultChannels.js +455 -13
- package/databases/tables/msWebsite.d.ts +2 -56
- package/databases/tables/msWebsite.js +386 -46
- package/{files-Dp2zDQAj.d.ts → files-CXIMD4Bk.d.ts} +4 -0
- package/{mdEbook-yzNQjFhx.d.ts → mdEbook-DVvRlFVe.d.ts} +2 -0
- package/package.json +1 -1
|
@@ -31,8 +31,11 @@ __export(appQueue_exports, {
|
|
|
31
31
|
appQueue: () => appQueue
|
|
32
32
|
});
|
|
33
33
|
module.exports = __toCommonJS(appQueue_exports);
|
|
34
|
+
var import_sequelize_typescript3 = require("sequelize-typescript");
|
|
35
|
+
|
|
36
|
+
// src/databases/tables/msWebsite.ts
|
|
34
37
|
var import_sequelize_typescript = require("sequelize-typescript");
|
|
35
|
-
var
|
|
38
|
+
var msWebsite = class extends import_sequelize_typescript.Model {
|
|
36
39
|
};
|
|
37
40
|
__decorateClass([
|
|
38
41
|
(0, import_sequelize_typescript.Column)({
|
|
@@ -40,183 +43,492 @@ __decorateClass([
|
|
|
40
43
|
autoIncrement: true,
|
|
41
44
|
type: import_sequelize_typescript.DataType.INTEGER
|
|
42
45
|
})
|
|
43
|
-
],
|
|
46
|
+
], msWebsite.prototype, "id", 2);
|
|
47
|
+
__decorateClass([
|
|
48
|
+
(0, import_sequelize_typescript.Column)({
|
|
49
|
+
allowNull: true,
|
|
50
|
+
type: import_sequelize_typescript.DataType.STRING(255)
|
|
51
|
+
})
|
|
52
|
+
], msWebsite.prototype, "code", 2);
|
|
44
53
|
__decorateClass([
|
|
45
54
|
(0, import_sequelize_typescript.Column)({
|
|
46
55
|
allowNull: true,
|
|
47
56
|
type: import_sequelize_typescript.DataType.STRING(60)
|
|
48
57
|
})
|
|
49
|
-
],
|
|
58
|
+
], msWebsite.prototype, "uuid", 2);
|
|
50
59
|
__decorateClass([
|
|
51
60
|
(0, import_sequelize_typescript.Column)({
|
|
52
61
|
allowNull: true,
|
|
53
|
-
type: import_sequelize_typescript.DataType.STRING(
|
|
62
|
+
type: import_sequelize_typescript.DataType.STRING(255)
|
|
54
63
|
})
|
|
55
|
-
],
|
|
64
|
+
], msWebsite.prototype, "name", 2);
|
|
65
|
+
__decorateClass([
|
|
66
|
+
(0, import_sequelize_typescript.Column)({
|
|
67
|
+
allowNull: true,
|
|
68
|
+
type: import_sequelize_typescript.DataType.STRING(255)
|
|
69
|
+
})
|
|
70
|
+
], msWebsite.prototype, "description", 2);
|
|
71
|
+
__decorateClass([
|
|
72
|
+
(0, import_sequelize_typescript.Column)({
|
|
73
|
+
allowNull: true,
|
|
74
|
+
type: import_sequelize_typescript.DataType.STRING(255)
|
|
75
|
+
})
|
|
76
|
+
], msWebsite.prototype, "url", 2);
|
|
77
|
+
__decorateClass([
|
|
78
|
+
(0, import_sequelize_typescript.Column)({
|
|
79
|
+
allowNull: true,
|
|
80
|
+
type: import_sequelize_typescript.DataType.INTEGER,
|
|
81
|
+
defaultValue: "1"
|
|
82
|
+
})
|
|
83
|
+
], msWebsite.prototype, "layout", 2);
|
|
56
84
|
__decorateClass([
|
|
57
85
|
(0, import_sequelize_typescript.Column)({
|
|
58
|
-
field: "site_id",
|
|
59
86
|
allowNull: true,
|
|
60
87
|
type: import_sequelize_typescript.DataType.INTEGER
|
|
61
88
|
})
|
|
62
|
-
],
|
|
89
|
+
], msWebsite.prototype, "type", 2);
|
|
90
|
+
__decorateClass([
|
|
91
|
+
(0, import_sequelize_typescript.Column)({
|
|
92
|
+
allowNull: true,
|
|
93
|
+
type: import_sequelize_typescript.DataType.INTEGER,
|
|
94
|
+
defaultValue: "1"
|
|
95
|
+
})
|
|
96
|
+
], msWebsite.prototype, "status", 2);
|
|
97
|
+
__decorateClass([
|
|
98
|
+
(0, import_sequelize_typescript.Column)({
|
|
99
|
+
allowNull: true,
|
|
100
|
+
type: import_sequelize_typescript.DataType.STRING(20)
|
|
101
|
+
})
|
|
102
|
+
], msWebsite.prototype, "region", 2);
|
|
103
|
+
__decorateClass([
|
|
104
|
+
(0, import_sequelize_typescript.Column)({
|
|
105
|
+
allowNull: true,
|
|
106
|
+
type: import_sequelize_typescript.DataType.INTEGER
|
|
107
|
+
})
|
|
108
|
+
], msWebsite.prototype, "sort", 2);
|
|
109
|
+
__decorateClass([
|
|
110
|
+
(0, import_sequelize_typescript.Column)({
|
|
111
|
+
allowNull: true,
|
|
112
|
+
type: import_sequelize_typescript.DataType.STRING(255)
|
|
113
|
+
})
|
|
114
|
+
], msWebsite.prototype, "image", 2);
|
|
115
|
+
__decorateClass([
|
|
116
|
+
(0, import_sequelize_typescript.Column)({
|
|
117
|
+
allowNull: true,
|
|
118
|
+
type: import_sequelize_typescript.DataType.STRING(255)
|
|
119
|
+
})
|
|
120
|
+
], msWebsite.prototype, "address", 2);
|
|
121
|
+
__decorateClass([
|
|
122
|
+
(0, import_sequelize_typescript.Column)({
|
|
123
|
+
allowNull: true,
|
|
124
|
+
type: import_sequelize_typescript.DataType.STRING(100)
|
|
125
|
+
})
|
|
126
|
+
], msWebsite.prototype, "phone", 2);
|
|
127
|
+
__decorateClass([
|
|
128
|
+
(0, import_sequelize_typescript.Column)({
|
|
129
|
+
allowNull: true,
|
|
130
|
+
type: import_sequelize_typescript.DataType.STRING(100)
|
|
131
|
+
})
|
|
132
|
+
], msWebsite.prototype, "fax", 2);
|
|
133
|
+
__decorateClass([
|
|
134
|
+
(0, import_sequelize_typescript.Column)({
|
|
135
|
+
allowNull: true,
|
|
136
|
+
type: import_sequelize_typescript.DataType.STRING(255)
|
|
137
|
+
})
|
|
138
|
+
], msWebsite.prototype, "office", 2);
|
|
63
139
|
__decorateClass([
|
|
64
140
|
(0, import_sequelize_typescript.Column)({
|
|
65
|
-
field: "request_date",
|
|
66
141
|
allowNull: true,
|
|
67
142
|
type: import_sequelize_typescript.DataType.DATEONLY
|
|
68
143
|
})
|
|
69
|
-
],
|
|
144
|
+
], msWebsite.prototype, "opened", 2);
|
|
145
|
+
__decorateClass([
|
|
146
|
+
(0, import_sequelize_typescript.Column)({
|
|
147
|
+
allowNull: true,
|
|
148
|
+
type: import_sequelize_typescript.DataType.DECIMAL(10, 8)
|
|
149
|
+
})
|
|
150
|
+
], msWebsite.prototype, "latitude", 2);
|
|
151
|
+
__decorateClass([
|
|
152
|
+
(0, import_sequelize_typescript.Column)({
|
|
153
|
+
allowNull: true,
|
|
154
|
+
type: import_sequelize_typescript.DataType.DECIMAL(11, 8)
|
|
155
|
+
})
|
|
156
|
+
], msWebsite.prototype, "longitude", 2);
|
|
157
|
+
__decorateClass([
|
|
158
|
+
(0, import_sequelize_typescript.Column)({
|
|
159
|
+
allowNull: true,
|
|
160
|
+
type: import_sequelize_typescript.DataType.JSON
|
|
161
|
+
})
|
|
162
|
+
], msWebsite.prototype, "info", 2);
|
|
163
|
+
__decorateClass([
|
|
164
|
+
(0, import_sequelize_typescript.Column)({
|
|
165
|
+
field: "created_by",
|
|
166
|
+
allowNull: true,
|
|
167
|
+
type: import_sequelize_typescript.DataType.STRING(60),
|
|
168
|
+
comment: "\u0E2A\u0E23\u0E49\u0E32\u0E07\u0E42\u0E14\u0E22"
|
|
169
|
+
})
|
|
170
|
+
], msWebsite.prototype, "createdBy", 2);
|
|
171
|
+
__decorateClass([
|
|
172
|
+
(0, import_sequelize_typescript.Column)({
|
|
173
|
+
field: "created_date",
|
|
174
|
+
allowNull: true,
|
|
175
|
+
type: import_sequelize_typescript.DataType.DATE,
|
|
176
|
+
comment: "\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E2A\u0E23\u0E49\u0E32\u0E07"
|
|
177
|
+
})
|
|
178
|
+
], msWebsite.prototype, "createdDate", 2);
|
|
179
|
+
__decorateClass([
|
|
180
|
+
(0, import_sequelize_typescript.Column)({
|
|
181
|
+
field: "updated_by",
|
|
182
|
+
allowNull: true,
|
|
183
|
+
type: import_sequelize_typescript.DataType.STRING(60),
|
|
184
|
+
comment: "\u0E41\u0E01\u0E49\u0E44\u0E02\u0E42\u0E14\u0E22"
|
|
185
|
+
})
|
|
186
|
+
], msWebsite.prototype, "updatedBy", 2);
|
|
70
187
|
__decorateClass([
|
|
71
188
|
(0, import_sequelize_typescript.Column)({
|
|
189
|
+
field: "updated_date",
|
|
190
|
+
allowNull: true,
|
|
191
|
+
type: import_sequelize_typescript.DataType.DATE,
|
|
192
|
+
comment: "\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48\u0E41\u0E01\u0E49\u0E44\u0E02"
|
|
193
|
+
})
|
|
194
|
+
], msWebsite.prototype, "updatedDate", 2);
|
|
195
|
+
__decorateClass([
|
|
196
|
+
(0, import_sequelize_typescript.HasMany)(() => appQueue, {
|
|
197
|
+
sourceKey: "id"
|
|
198
|
+
})
|
|
199
|
+
], msWebsite.prototype, "appQueues", 2);
|
|
200
|
+
msWebsite = __decorateClass([
|
|
201
|
+
(0, import_sequelize_typescript.Table)({
|
|
202
|
+
tableName: "ms_website",
|
|
203
|
+
timestamps: false
|
|
204
|
+
})
|
|
205
|
+
], msWebsite);
|
|
206
|
+
|
|
207
|
+
// src/databases/tables/msConsultChannels.ts
|
|
208
|
+
var import_sequelize_typescript2 = require("sequelize-typescript");
|
|
209
|
+
var msConsultChannels = class extends import_sequelize_typescript2.Model {
|
|
210
|
+
};
|
|
211
|
+
__decorateClass([
|
|
212
|
+
(0, import_sequelize_typescript2.Column)({
|
|
213
|
+
primaryKey: true,
|
|
214
|
+
autoIncrement: true,
|
|
215
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
216
|
+
})
|
|
217
|
+
], msConsultChannels.prototype, "id", 2);
|
|
218
|
+
__decorateClass([
|
|
219
|
+
(0, import_sequelize_typescript2.Column)({
|
|
220
|
+
allowNull: true,
|
|
221
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
222
|
+
})
|
|
223
|
+
], msConsultChannels.prototype, "name", 2);
|
|
224
|
+
__decorateClass([
|
|
225
|
+
(0, import_sequelize_typescript2.Column)({
|
|
226
|
+
allowNull: true,
|
|
227
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
228
|
+
})
|
|
229
|
+
], msConsultChannels.prototype, "sort", 2);
|
|
230
|
+
__decorateClass([
|
|
231
|
+
(0, import_sequelize_typescript2.Column)({
|
|
232
|
+
allowNull: true,
|
|
233
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
234
|
+
})
|
|
235
|
+
], msConsultChannels.prototype, "message", 2);
|
|
236
|
+
__decorateClass([
|
|
237
|
+
(0, import_sequelize_typescript2.Column)({
|
|
238
|
+
allowNull: true,
|
|
239
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
240
|
+
})
|
|
241
|
+
], msConsultChannels.prototype, "status", 2);
|
|
242
|
+
__decorateClass([
|
|
243
|
+
(0, import_sequelize_typescript2.Column)({
|
|
244
|
+
field: "created_by",
|
|
245
|
+
allowNull: true,
|
|
246
|
+
type: import_sequelize_typescript2.DataType.STRING(60)
|
|
247
|
+
})
|
|
248
|
+
], msConsultChannels.prototype, "createdBy", 2);
|
|
249
|
+
__decorateClass([
|
|
250
|
+
(0, import_sequelize_typescript2.Column)({
|
|
251
|
+
field: "created_date",
|
|
252
|
+
allowNull: true,
|
|
253
|
+
type: import_sequelize_typescript2.DataType.DATE
|
|
254
|
+
})
|
|
255
|
+
], msConsultChannels.prototype, "createdDate", 2);
|
|
256
|
+
__decorateClass([
|
|
257
|
+
(0, import_sequelize_typescript2.Column)({
|
|
258
|
+
field: "updated_by",
|
|
259
|
+
allowNull: true,
|
|
260
|
+
type: import_sequelize_typescript2.DataType.STRING(60)
|
|
261
|
+
})
|
|
262
|
+
], msConsultChannels.prototype, "updatedBy", 2);
|
|
263
|
+
__decorateClass([
|
|
264
|
+
(0, import_sequelize_typescript2.Column)({
|
|
265
|
+
field: "updated_date",
|
|
266
|
+
allowNull: true,
|
|
267
|
+
type: import_sequelize_typescript2.DataType.DATE
|
|
268
|
+
})
|
|
269
|
+
], msConsultChannels.prototype, "updatedDate", 2);
|
|
270
|
+
__decorateClass([
|
|
271
|
+
(0, import_sequelize_typescript2.HasMany)(() => appQueue, {
|
|
272
|
+
sourceKey: "id"
|
|
273
|
+
})
|
|
274
|
+
], msConsultChannels.prototype, "appQueues", 2);
|
|
275
|
+
msConsultChannels = __decorateClass([
|
|
276
|
+
(0, import_sequelize_typescript2.Table)({
|
|
277
|
+
tableName: "ms_consult_channels",
|
|
278
|
+
timestamps: false
|
|
279
|
+
})
|
|
280
|
+
], msConsultChannels);
|
|
281
|
+
|
|
282
|
+
// src/databases/tables/appQueue.ts
|
|
283
|
+
var appQueue = class extends import_sequelize_typescript3.Model {
|
|
284
|
+
};
|
|
285
|
+
__decorateClass([
|
|
286
|
+
(0, import_sequelize_typescript3.Column)({
|
|
287
|
+
primaryKey: true,
|
|
288
|
+
autoIncrement: true,
|
|
289
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
290
|
+
})
|
|
291
|
+
], appQueue.prototype, "id", 2);
|
|
292
|
+
__decorateClass([
|
|
293
|
+
(0, import_sequelize_typescript3.Column)({
|
|
294
|
+
allowNull: true,
|
|
295
|
+
type: import_sequelize_typescript3.DataType.STRING(60)
|
|
296
|
+
})
|
|
297
|
+
], appQueue.prototype, "uuid", 2);
|
|
298
|
+
__decorateClass([
|
|
299
|
+
(0, import_sequelize_typescript3.Column)({
|
|
300
|
+
allowNull: true,
|
|
301
|
+
type: import_sequelize_typescript3.DataType.STRING(15)
|
|
302
|
+
})
|
|
303
|
+
], appQueue.prototype, "code", 2);
|
|
304
|
+
__decorateClass([
|
|
305
|
+
(0, import_sequelize_typescript3.ForeignKey)(() => msWebsite),
|
|
306
|
+
(0, import_sequelize_typescript3.Column)({
|
|
307
|
+
field: "site_id",
|
|
308
|
+
allowNull: true,
|
|
309
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
310
|
+
})
|
|
311
|
+
], appQueue.prototype, "siteId", 2);
|
|
312
|
+
__decorateClass([
|
|
313
|
+
(0, import_sequelize_typescript3.Column)({
|
|
314
|
+
field: "request_date",
|
|
315
|
+
allowNull: true,
|
|
316
|
+
type: import_sequelize_typescript3.DataType.DATEONLY
|
|
317
|
+
})
|
|
318
|
+
], appQueue.prototype, "requestDate", 2);
|
|
319
|
+
__decorateClass([
|
|
320
|
+
(0, import_sequelize_typescript3.Column)({
|
|
321
|
+
field: "request_from",
|
|
322
|
+
allowNull: true,
|
|
323
|
+
type: import_sequelize_typescript3.DataType.TIME
|
|
324
|
+
})
|
|
325
|
+
], appQueue.prototype, "requestFrom", 2);
|
|
326
|
+
__decorateClass([
|
|
327
|
+
(0, import_sequelize_typescript3.Column)({
|
|
328
|
+
field: "request_to",
|
|
329
|
+
allowNull: true,
|
|
330
|
+
type: import_sequelize_typescript3.DataType.TIME
|
|
331
|
+
})
|
|
332
|
+
], appQueue.prototype, "requestTo", 2);
|
|
333
|
+
__decorateClass([
|
|
334
|
+
(0, import_sequelize_typescript3.Column)({
|
|
72
335
|
field: "approve_date",
|
|
73
336
|
allowNull: true,
|
|
74
|
-
type:
|
|
337
|
+
type: import_sequelize_typescript3.DataType.DATEONLY
|
|
75
338
|
})
|
|
76
339
|
], appQueue.prototype, "approveDate", 2);
|
|
77
340
|
__decorateClass([
|
|
78
|
-
(0,
|
|
341
|
+
(0, import_sequelize_typescript3.Column)({
|
|
79
342
|
field: "time_slot",
|
|
80
343
|
allowNull: true,
|
|
81
|
-
type:
|
|
344
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
82
345
|
})
|
|
83
346
|
], appQueue.prototype, "timeSlot", 2);
|
|
84
347
|
__decorateClass([
|
|
85
|
-
(0,
|
|
348
|
+
(0, import_sequelize_typescript3.Column)({
|
|
86
349
|
field: "full_name",
|
|
87
350
|
allowNull: true,
|
|
88
|
-
type:
|
|
351
|
+
type: import_sequelize_typescript3.DataType.STRING(255)
|
|
89
352
|
})
|
|
90
353
|
], appQueue.prototype, "fullName", 2);
|
|
91
354
|
__decorateClass([
|
|
92
|
-
(0,
|
|
355
|
+
(0, import_sequelize_typescript3.Column)({
|
|
93
356
|
allowNull: true,
|
|
94
|
-
type:
|
|
357
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
95
358
|
})
|
|
96
359
|
], appQueue.prototype, "residence", 2);
|
|
97
360
|
__decorateClass([
|
|
98
|
-
(0,
|
|
361
|
+
(0, import_sequelize_typescript3.Column)({
|
|
99
362
|
allowNull: true,
|
|
100
|
-
type:
|
|
363
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
101
364
|
})
|
|
102
365
|
], appQueue.prototype, "occupation", 2);
|
|
103
366
|
__decorateClass([
|
|
104
|
-
(0,
|
|
367
|
+
(0, import_sequelize_typescript3.Column)({
|
|
105
368
|
field: "phone_number",
|
|
106
369
|
allowNull: true,
|
|
107
|
-
type:
|
|
370
|
+
type: import_sequelize_typescript3.DataType.STRING(20)
|
|
108
371
|
})
|
|
109
372
|
], appQueue.prototype, "phoneNumber", 2);
|
|
110
373
|
__decorateClass([
|
|
111
|
-
(0,
|
|
374
|
+
(0, import_sequelize_typescript3.Column)({
|
|
112
375
|
allowNull: true,
|
|
113
|
-
type:
|
|
376
|
+
type: import_sequelize_typescript3.DataType.STRING(150)
|
|
114
377
|
})
|
|
115
378
|
], appQueue.prototype, "email", 2);
|
|
116
379
|
__decorateClass([
|
|
117
|
-
(0,
|
|
380
|
+
(0, import_sequelize_typescript3.Column)({
|
|
118
381
|
field: "line_id",
|
|
119
382
|
allowNull: true,
|
|
120
|
-
type:
|
|
383
|
+
type: import_sequelize_typescript3.DataType.STRING(100)
|
|
121
384
|
})
|
|
122
385
|
], appQueue.prototype, "lineId", 2);
|
|
123
386
|
__decorateClass([
|
|
124
|
-
(0,
|
|
387
|
+
(0, import_sequelize_typescript3.ForeignKey)(() => msConsultChannels),
|
|
388
|
+
(0, import_sequelize_typescript3.Column)({
|
|
125
389
|
field: "consult_channel",
|
|
126
390
|
allowNull: true,
|
|
127
|
-
type:
|
|
391
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
128
392
|
})
|
|
129
393
|
], appQueue.prototype, "consultChannel", 2);
|
|
130
394
|
__decorateClass([
|
|
131
|
-
(0,
|
|
395
|
+
(0, import_sequelize_typescript3.Column)({
|
|
132
396
|
field: "consult_topic",
|
|
133
397
|
allowNull: true,
|
|
134
|
-
type:
|
|
398
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
135
399
|
})
|
|
136
400
|
], appQueue.prototype, "consultTopic", 2);
|
|
137
401
|
__decorateClass([
|
|
138
|
-
(0,
|
|
402
|
+
(0, import_sequelize_typescript3.Column)({
|
|
139
403
|
field: "consult_topic_other",
|
|
140
404
|
allowNull: true,
|
|
141
|
-
type:
|
|
405
|
+
type: import_sequelize_typescript3.DataType.STRING(255)
|
|
142
406
|
})
|
|
143
407
|
], appQueue.prototype, "consultTopicOther", 2);
|
|
144
408
|
__decorateClass([
|
|
145
|
-
(0,
|
|
409
|
+
(0, import_sequelize_typescript3.Column)({
|
|
146
410
|
field: "black_case_number",
|
|
147
411
|
allowNull: true,
|
|
148
|
-
type:
|
|
412
|
+
type: import_sequelize_typescript3.DataType.STRING(50)
|
|
149
413
|
})
|
|
150
414
|
], appQueue.prototype, "blackCaseNumber", 2);
|
|
151
415
|
__decorateClass([
|
|
152
|
-
(0,
|
|
416
|
+
(0, import_sequelize_typescript3.Column)({
|
|
153
417
|
field: "red_case_number",
|
|
154
418
|
allowNull: true,
|
|
155
|
-
type:
|
|
419
|
+
type: import_sequelize_typescript3.DataType.STRING(50)
|
|
156
420
|
})
|
|
157
421
|
], appQueue.prototype, "redCaseNumber", 2);
|
|
158
422
|
__decorateClass([
|
|
159
|
-
(0,
|
|
423
|
+
(0, import_sequelize_typescript3.Column)({
|
|
160
424
|
allowNull: true,
|
|
161
|
-
type:
|
|
425
|
+
type: import_sequelize_typescript3.DataType.STRING
|
|
162
426
|
})
|
|
163
427
|
], appQueue.prototype, "issues", 2);
|
|
164
428
|
__decorateClass([
|
|
165
|
-
(0,
|
|
429
|
+
(0, import_sequelize_typescript3.Column)({
|
|
166
430
|
allowNull: true,
|
|
167
|
-
type:
|
|
431
|
+
type: import_sequelize_typescript3.DataType.JSON
|
|
168
432
|
})
|
|
169
433
|
], appQueue.prototype, "attachments", 2);
|
|
170
434
|
__decorateClass([
|
|
171
|
-
(0,
|
|
435
|
+
(0, import_sequelize_typescript3.Column)({
|
|
172
436
|
field: "ip_address",
|
|
173
437
|
allowNull: true,
|
|
174
|
-
type:
|
|
438
|
+
type: import_sequelize_typescript3.DataType.STRING(30)
|
|
175
439
|
})
|
|
176
440
|
], appQueue.prototype, "ipAddress", 2);
|
|
177
441
|
__decorateClass([
|
|
178
|
-
(0,
|
|
442
|
+
(0, import_sequelize_typescript3.Column)({
|
|
179
443
|
field: "staff_id",
|
|
180
444
|
allowNull: true,
|
|
181
|
-
type:
|
|
445
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
182
446
|
})
|
|
183
447
|
], appQueue.prototype, "staffId", 2);
|
|
184
448
|
__decorateClass([
|
|
185
|
-
(0,
|
|
449
|
+
(0, import_sequelize_typescript3.Column)({
|
|
186
450
|
allowNull: true,
|
|
187
|
-
type:
|
|
451
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
188
452
|
})
|
|
189
453
|
], appQueue.prototype, "status", 2);
|
|
190
454
|
__decorateClass([
|
|
191
|
-
(0,
|
|
455
|
+
(0, import_sequelize_typescript3.Column)({
|
|
456
|
+
field: "case_type_id",
|
|
457
|
+
allowNull: true,
|
|
458
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
459
|
+
})
|
|
460
|
+
], appQueue.prototype, "caseTypeId", 2);
|
|
461
|
+
__decorateClass([
|
|
462
|
+
(0, import_sequelize_typescript3.Column)({
|
|
463
|
+
field: "case_section_id",
|
|
464
|
+
allowNull: true,
|
|
465
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
466
|
+
})
|
|
467
|
+
], appQueue.prototype, "caseSectionId", 2);
|
|
468
|
+
__decorateClass([
|
|
469
|
+
(0, import_sequelize_typescript3.Column)({
|
|
470
|
+
field: "case_section_other",
|
|
471
|
+
allowNull: true,
|
|
472
|
+
type: import_sequelize_typescript3.DataType.STRING(255)
|
|
473
|
+
})
|
|
474
|
+
], appQueue.prototype, "caseSectionOther", 2);
|
|
475
|
+
__decorateClass([
|
|
476
|
+
(0, import_sequelize_typescript3.Column)({
|
|
477
|
+
field: "case_jurisdiction",
|
|
478
|
+
allowNull: true,
|
|
479
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
480
|
+
})
|
|
481
|
+
], appQueue.prototype, "caseJurisdiction", 2);
|
|
482
|
+
__decorateClass([
|
|
483
|
+
(0, import_sequelize_typescript3.Column)({
|
|
484
|
+
field: "staff_issues",
|
|
485
|
+
allowNull: true,
|
|
486
|
+
type: import_sequelize_typescript3.DataType.STRING
|
|
487
|
+
})
|
|
488
|
+
], appQueue.prototype, "staffIssues", 2);
|
|
489
|
+
__decorateClass([
|
|
490
|
+
(0, import_sequelize_typescript3.Column)({
|
|
491
|
+
field: "staff_note",
|
|
492
|
+
allowNull: true,
|
|
493
|
+
type: import_sequelize_typescript3.DataType.STRING
|
|
494
|
+
})
|
|
495
|
+
], appQueue.prototype, "staffNote", 2);
|
|
496
|
+
__decorateClass([
|
|
497
|
+
(0, import_sequelize_typescript3.Column)({
|
|
192
498
|
field: "created_by",
|
|
193
499
|
allowNull: true,
|
|
194
|
-
type:
|
|
500
|
+
type: import_sequelize_typescript3.DataType.STRING(60)
|
|
195
501
|
})
|
|
196
502
|
], appQueue.prototype, "createdBy", 2);
|
|
197
503
|
__decorateClass([
|
|
198
|
-
(0,
|
|
504
|
+
(0, import_sequelize_typescript3.Column)({
|
|
199
505
|
field: "created_date",
|
|
200
506
|
allowNull: true,
|
|
201
|
-
type:
|
|
507
|
+
type: import_sequelize_typescript3.DataType.DATE
|
|
202
508
|
})
|
|
203
509
|
], appQueue.prototype, "createdDate", 2);
|
|
204
510
|
__decorateClass([
|
|
205
|
-
(0,
|
|
511
|
+
(0, import_sequelize_typescript3.Column)({
|
|
206
512
|
field: "updated_by",
|
|
207
513
|
allowNull: true,
|
|
208
|
-
type:
|
|
514
|
+
type: import_sequelize_typescript3.DataType.STRING(60)
|
|
209
515
|
})
|
|
210
516
|
], appQueue.prototype, "updatedBy", 2);
|
|
211
517
|
__decorateClass([
|
|
212
|
-
(0,
|
|
518
|
+
(0, import_sequelize_typescript3.Column)({
|
|
213
519
|
field: "updated_date",
|
|
214
520
|
allowNull: true,
|
|
215
|
-
type:
|
|
521
|
+
type: import_sequelize_typescript3.DataType.DATE
|
|
216
522
|
})
|
|
217
523
|
], appQueue.prototype, "updatedDate", 2);
|
|
524
|
+
__decorateClass([
|
|
525
|
+
(0, import_sequelize_typescript3.BelongsTo)(() => msWebsite)
|
|
526
|
+
], appQueue.prototype, "msWebsite", 2);
|
|
527
|
+
__decorateClass([
|
|
528
|
+
(0, import_sequelize_typescript3.BelongsTo)(() => msConsultChannels)
|
|
529
|
+
], appQueue.prototype, "msConsultChannel", 2);
|
|
218
530
|
appQueue = __decorateClass([
|
|
219
|
-
(0,
|
|
531
|
+
(0, import_sequelize_typescript3.Table)({
|
|
220
532
|
tableName: "app_queue",
|
|
221
533
|
timestamps: false
|
|
222
534
|
})
|
|
@@ -147,7 +147,7 @@ __decorateClass([
|
|
|
147
147
|
__decorateClass([
|
|
148
148
|
(0, import_sequelize_typescript2.Column)({
|
|
149
149
|
allowNull: true,
|
|
150
|
-
type: import_sequelize_typescript2.DataType.STRING(
|
|
150
|
+
type: import_sequelize_typescript2.DataType.STRING(1e3)
|
|
151
151
|
})
|
|
152
152
|
], appReportCorruption.prototype, "title", 2);
|
|
153
153
|
__decorateClass([
|
|
@@ -59,7 +59,7 @@ __decorateClass([
|
|
|
59
59
|
__decorateClass([
|
|
60
60
|
(0, import_sequelize_typescript.Column)({
|
|
61
61
|
allowNull: true,
|
|
62
|
-
type: import_sequelize_typescript.DataType.STRING(
|
|
62
|
+
type: import_sequelize_typescript.DataType.STRING(1e3)
|
|
63
63
|
})
|
|
64
64
|
], appReportCorruption.prototype, "title", 2);
|
|
65
65
|
__decorateClass([
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { a as files, f as filesAttributes } from '../../files-
|
|
2
|
+
export { a as files, f as filesAttributes } from '../../files-CXIMD4Bk.js';
|
|
@@ -50,6 +50,13 @@ __decorateClass([
|
|
|
50
50
|
type: import_sequelize_typescript.DataType.STRING(60)
|
|
51
51
|
})
|
|
52
52
|
], mdBanner.prototype, "uuid", 2);
|
|
53
|
+
__decorateClass([
|
|
54
|
+
(0, import_sequelize_typescript.Column)({
|
|
55
|
+
field: "group_id",
|
|
56
|
+
allowNull: true,
|
|
57
|
+
type: import_sequelize_typescript.DataType.INTEGER
|
|
58
|
+
})
|
|
59
|
+
], mdBanner.prototype, "groupId", 2);
|
|
53
60
|
__decorateClass([
|
|
54
61
|
(0, import_sequelize_typescript.Column)({
|
|
55
62
|
field: "key_name",
|
|
@@ -300,6 +307,12 @@ __decorateClass([
|
|
|
300
307
|
type: import_sequelize_typescript2.DataType.INTEGER
|
|
301
308
|
})
|
|
302
309
|
], files.prototype, "refId", 2);
|
|
310
|
+
__decorateClass([
|
|
311
|
+
(0, import_sequelize_typescript2.Column)({
|
|
312
|
+
allowNull: true,
|
|
313
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
314
|
+
})
|
|
315
|
+
], files.prototype, "sequence", 2);
|
|
303
316
|
__decorateClass([
|
|
304
317
|
(0, import_sequelize_typescript2.HasOne)(() => mdBanner, {
|
|
305
318
|
sourceKey: "uuid"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { b as appBlessings, a as appBlessingsAttributes, d as appBlessingsTransaction, c as appBlessingsTransactionAttributes } from '../../appBlessings-DcXFhNjP.js';
|
|
2
2
|
export { appFaq, appFaqAttributes } from './appFaq.js';
|
|
3
|
-
export { appQueue, appQueueAttributes } from '
|
|
3
|
+
export { b as appQueue, a as appQueueAttributes, c as msConsultChannels, m as msConsultChannelsAttributes, e as msWebsite, d as msWebsiteAttributes } from '../../appQueue-QJ9ECucz.js';
|
|
4
4
|
export { appQueueTour, appQueueTourAttributes } from './appQueueTour.js';
|
|
5
5
|
export { b as appReportCorruption, a as appReportCorruptionAttributes, d as appReportCorruptionTransaction, c as appReportCorruptionTransactionAttributes } from '../../appReportCorruption-BsdsQQ1q.js';
|
|
6
6
|
export { appScore, appScoreAttributes } from './appScore.js';
|
|
@@ -10,7 +10,7 @@ export { b as authAssignment, a as authAssignmentAttributes, d as authRole, c as
|
|
|
10
10
|
export { b as authItem, a as authItemAttributes, d as authItemChild, c as authItemChildAttributes, e as menu, m as menuAttributes, g as msModule, f as msModuleAttributes } from '../../authItem-DBSkCaSi.js';
|
|
11
11
|
export { contactUs, contactUsAttributes } from './contactUs.js';
|
|
12
12
|
export { contentGuidelinesTour, contentGuidelinesTourAttributes } from './contentGuidelinesTour.js';
|
|
13
|
-
export { a as files, f as filesAttributes, b as mdBanner, m as mdBannerAttributes } from '../../files-
|
|
13
|
+
export { a as files, f as filesAttributes, b as mdBanner, m as mdBannerAttributes } from '../../files-CXIMD4Bk.js';
|
|
14
14
|
export { helper, helperAttributes } from './helper.js';
|
|
15
15
|
export { logs, logsAttributes } from './logs.js';
|
|
16
16
|
export { logsMember, logsMemberAttributes } from './logsMember.js';
|
|
@@ -19,7 +19,7 @@ export { mdCmsSingle, mdCmsSingleAttributes } from './mdCmsSingle.js';
|
|
|
19
19
|
export { mdConfiguration, mdConfigurationAttributes } from './mdConfiguration.js';
|
|
20
20
|
export { mdDocumentPdf, mdDocumentPdfAttributes } from './mdDocumentPdf.js';
|
|
21
21
|
export { a as mdDownload, m as mdDownloadAttributes, c as mdDownloadGroup, b as mdDownloadGroupAttributes } from '../../mdDownload-CCc6eto7.js';
|
|
22
|
-
export { a as mdEbook, m as mdEbookAttributes, c as mdEbookGroup, b as mdEbookGroupAttributes } from '../../mdEbook-
|
|
22
|
+
export { a as mdEbook, m as mdEbookAttributes, c as mdEbookGroup, b as mdEbookGroupAttributes } from '../../mdEbook-DVvRlFVe.js';
|
|
23
23
|
export { mdEgp, mdEgpAttributes } from './mdEgp.js';
|
|
24
24
|
export { a as mdFaq, m as mdFaqAttributes, c as mdFaqGroup, b as mdFaqGroupAttributes } from '../../mdFaq-CHIPG3yZ.js';
|
|
25
25
|
export { mdFormAdvance_1, mdFormAdvance_1Attributes } from './mdFormAdvance_1.js';
|
|
@@ -34,7 +34,6 @@ export { mdVideo, mdVideoAttributes } from './mdVideo.js';
|
|
|
34
34
|
export { mdWords, mdWordsAttributes } from './mdWords.js';
|
|
35
35
|
export { member, memberAttributes } from './member.js';
|
|
36
36
|
export { msConsultCase, msConsultCaseAttributes } from './msConsultCase.js';
|
|
37
|
-
export { msConsultChannels, msConsultChannelsAttributes } from './msConsultChannels.js';
|
|
38
37
|
export { msConsultInstructions, msConsultInstructionsAttributes } from './msConsultInstructions.js';
|
|
39
38
|
export { msConsultService, msConsultServiceAttributes } from './msConsultService.js';
|
|
40
39
|
export { msConsultSiteChannel, msConsultSiteChannelAttributes } from './msConsultSiteChannel.js';
|
|
@@ -48,7 +47,6 @@ export { msHoliday, msHolidayAttributes } from './msHoliday.js';
|
|
|
48
47
|
export { msProvince, msProvinceAttributes } from './msProvince.js';
|
|
49
48
|
export { msTitle, msTitleAttributes } from './msTitle.js';
|
|
50
49
|
export { msVariable, msVariableAttributes } from './msVariable.js';
|
|
51
|
-
export { msWebsite, msWebsiteAttributes } from './msWebsite.js';
|
|
52
50
|
export { oauthAccessToken, oauthAccessTokenAttributes } from './oauthAccessToken.js';
|
|
53
51
|
export { oauthRefreshToken, oauthRefreshTokenAttributes } from './oauthRefreshToken.js';
|
|
54
52
|
export { a as recruitment, r as recruitmentAttributes, c as recruitmentGroup, b as recruitmentGroupAttributes } from '../../recruitment-5Pi7YA8x.js';
|