@admc-go-th/admc-library 1.0.113 → 1.0.115
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/index.ts +2 -0
- package/databases/schema/msExecutive.ts +75 -8
- package/databases/schema/msExecutiveGroup.ts +118 -0
- package/databases/schema/msExecutivePosition.ts +95 -0
- package/databases/tables/index.d.ts +1 -1
- package/databases/tables/index.js +566 -321
- package/databases/tables/msExecutive.d.ts +2 -32
- package/databases/tables/msExecutive.js +264 -23
- package/databases/tables/msExecutiveGroup.d.ts +2 -0
- package/databases/tables/msExecutiveGroup.js +371 -0
- package/databases/tables/msExecutivePosition.d.ts +2 -0
- package/databases/tables/msExecutivePosition.js +371 -0
- package/msExecutive-Brhgvmvs.d.ts +108 -0
- package/package.json +1 -1
|
@@ -0,0 +1,371 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __export = (target, all) => {
|
|
7
|
+
for (var name in all)
|
|
8
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
+
};
|
|
10
|
+
var __copyProps = (to, from, except, desc) => {
|
|
11
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
+
for (let key of __getOwnPropNames(from))
|
|
13
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
+
}
|
|
16
|
+
return to;
|
|
17
|
+
};
|
|
18
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
+
var __decorateClass = (decorators, target, key, kind) => {
|
|
20
|
+
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
|
|
21
|
+
for (var i = decorators.length - 1, decorator; i >= 0; i--)
|
|
22
|
+
if (decorator = decorators[i])
|
|
23
|
+
result = (kind ? decorator(target, key, result) : decorator(result)) || result;
|
|
24
|
+
if (kind && result) __defProp(target, key, result);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
// src/databases/tables/msExecutivePosition.ts
|
|
29
|
+
var msExecutivePosition_exports = {};
|
|
30
|
+
__export(msExecutivePosition_exports, {
|
|
31
|
+
msExecutivePosition: () => msExecutivePosition
|
|
32
|
+
});
|
|
33
|
+
module.exports = __toCommonJS(msExecutivePosition_exports);
|
|
34
|
+
var import_sequelize_typescript3 = require("sequelize-typescript");
|
|
35
|
+
|
|
36
|
+
// src/databases/tables/msExecutive.ts
|
|
37
|
+
var import_sequelize_typescript2 = require("sequelize-typescript");
|
|
38
|
+
|
|
39
|
+
// src/databases/tables/msExecutiveGroup.ts
|
|
40
|
+
var import_sequelize_typescript = require("sequelize-typescript");
|
|
41
|
+
var msExecutiveGroup = class extends import_sequelize_typescript.Model {
|
|
42
|
+
};
|
|
43
|
+
__decorateClass([
|
|
44
|
+
(0, import_sequelize_typescript.Column)({
|
|
45
|
+
primaryKey: true,
|
|
46
|
+
autoIncrement: true,
|
|
47
|
+
type: import_sequelize_typescript.DataType.INTEGER
|
|
48
|
+
})
|
|
49
|
+
], msExecutiveGroup.prototype, "id", 2);
|
|
50
|
+
__decorateClass([
|
|
51
|
+
(0, import_sequelize_typescript.Column)({
|
|
52
|
+
allowNull: true,
|
|
53
|
+
type: import_sequelize_typescript.DataType.STRING(60)
|
|
54
|
+
})
|
|
55
|
+
], msExecutiveGroup.prototype, "uuid", 2);
|
|
56
|
+
__decorateClass([
|
|
57
|
+
(0, import_sequelize_typescript.Column)({
|
|
58
|
+
allowNull: true,
|
|
59
|
+
type: import_sequelize_typescript.DataType.STRING(255)
|
|
60
|
+
})
|
|
61
|
+
], msExecutiveGroup.prototype, "name", 2);
|
|
62
|
+
__decorateClass([
|
|
63
|
+
(0, import_sequelize_typescript.Column)({
|
|
64
|
+
allowNull: true,
|
|
65
|
+
type: import_sequelize_typescript.DataType.STRING(255)
|
|
66
|
+
})
|
|
67
|
+
], msExecutiveGroup.prototype, "description", 2);
|
|
68
|
+
__decorateClass([
|
|
69
|
+
(0, import_sequelize_typescript.Column)({
|
|
70
|
+
field: "start_date",
|
|
71
|
+
allowNull: true,
|
|
72
|
+
type: import_sequelize_typescript.DataType.DATEONLY
|
|
73
|
+
})
|
|
74
|
+
], msExecutiveGroup.prototype, "startDate", 2);
|
|
75
|
+
__decorateClass([
|
|
76
|
+
(0, import_sequelize_typescript.Column)({
|
|
77
|
+
field: "end_date",
|
|
78
|
+
allowNull: true,
|
|
79
|
+
type: import_sequelize_typescript.DataType.DATEONLY
|
|
80
|
+
})
|
|
81
|
+
], msExecutiveGroup.prototype, "endDate", 2);
|
|
82
|
+
__decorateClass([
|
|
83
|
+
(0, import_sequelize_typescript.Column)({
|
|
84
|
+
allowNull: true,
|
|
85
|
+
type: import_sequelize_typescript.DataType.INTEGER
|
|
86
|
+
})
|
|
87
|
+
], msExecutiveGroup.prototype, "sort", 2);
|
|
88
|
+
__decorateClass([
|
|
89
|
+
(0, import_sequelize_typescript.Column)({
|
|
90
|
+
allowNull: true,
|
|
91
|
+
type: import_sequelize_typescript.DataType.INTEGER
|
|
92
|
+
})
|
|
93
|
+
], msExecutiveGroup.prototype, "status", 2);
|
|
94
|
+
__decorateClass([
|
|
95
|
+
(0, import_sequelize_typescript.Column)({
|
|
96
|
+
allowNull: true,
|
|
97
|
+
type: import_sequelize_typescript.DataType.JSON
|
|
98
|
+
})
|
|
99
|
+
], msExecutiveGroup.prototype, "info", 2);
|
|
100
|
+
__decorateClass([
|
|
101
|
+
(0, import_sequelize_typescript.Column)({
|
|
102
|
+
field: "created_by",
|
|
103
|
+
allowNull: true,
|
|
104
|
+
type: import_sequelize_typescript.DataType.STRING(60)
|
|
105
|
+
})
|
|
106
|
+
], msExecutiveGroup.prototype, "createdBy", 2);
|
|
107
|
+
__decorateClass([
|
|
108
|
+
(0, import_sequelize_typescript.Column)({
|
|
109
|
+
field: "created_date",
|
|
110
|
+
allowNull: true,
|
|
111
|
+
type: import_sequelize_typescript.DataType.DATE
|
|
112
|
+
})
|
|
113
|
+
], msExecutiveGroup.prototype, "createdDate", 2);
|
|
114
|
+
__decorateClass([
|
|
115
|
+
(0, import_sequelize_typescript.Column)({
|
|
116
|
+
field: "updated_by",
|
|
117
|
+
allowNull: true,
|
|
118
|
+
type: import_sequelize_typescript.DataType.STRING(60)
|
|
119
|
+
})
|
|
120
|
+
], msExecutiveGroup.prototype, "updatedBy", 2);
|
|
121
|
+
__decorateClass([
|
|
122
|
+
(0, import_sequelize_typescript.Column)({
|
|
123
|
+
field: "updated_date",
|
|
124
|
+
allowNull: true,
|
|
125
|
+
type: import_sequelize_typescript.DataType.DATE
|
|
126
|
+
})
|
|
127
|
+
], msExecutiveGroup.prototype, "updatedDate", 2);
|
|
128
|
+
__decorateClass([
|
|
129
|
+
(0, import_sequelize_typescript.HasMany)(() => msExecutive, {
|
|
130
|
+
sourceKey: "id"
|
|
131
|
+
})
|
|
132
|
+
], msExecutiveGroup.prototype, "msExecutives", 2);
|
|
133
|
+
msExecutiveGroup = __decorateClass([
|
|
134
|
+
(0, import_sequelize_typescript.Table)({
|
|
135
|
+
tableName: "ms_executive_group",
|
|
136
|
+
timestamps: false
|
|
137
|
+
})
|
|
138
|
+
], msExecutiveGroup);
|
|
139
|
+
|
|
140
|
+
// src/databases/tables/msExecutive.ts
|
|
141
|
+
var msExecutive = class extends import_sequelize_typescript2.Model {
|
|
142
|
+
};
|
|
143
|
+
__decorateClass([
|
|
144
|
+
(0, import_sequelize_typescript2.Column)({
|
|
145
|
+
primaryKey: true,
|
|
146
|
+
autoIncrement: true,
|
|
147
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
148
|
+
})
|
|
149
|
+
], msExecutive.prototype, "id", 2);
|
|
150
|
+
__decorateClass([
|
|
151
|
+
(0, import_sequelize_typescript2.ForeignKey)(() => msExecutiveGroup),
|
|
152
|
+
(0, import_sequelize_typescript2.Column)({
|
|
153
|
+
field: "group_id",
|
|
154
|
+
allowNull: true,
|
|
155
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
156
|
+
})
|
|
157
|
+
], msExecutive.prototype, "groupId", 2);
|
|
158
|
+
__decorateClass([
|
|
159
|
+
(0, import_sequelize_typescript2.ForeignKey)(() => msExecutivePosition),
|
|
160
|
+
(0, import_sequelize_typescript2.Column)({
|
|
161
|
+
field: "position_id",
|
|
162
|
+
allowNull: true,
|
|
163
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
164
|
+
})
|
|
165
|
+
], msExecutive.prototype, "positionId", 2);
|
|
166
|
+
__decorateClass([
|
|
167
|
+
(0, import_sequelize_typescript2.Column)({
|
|
168
|
+
field: "position_other",
|
|
169
|
+
allowNull: true,
|
|
170
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
171
|
+
})
|
|
172
|
+
], msExecutive.prototype, "positionOther", 2);
|
|
173
|
+
__decorateClass([
|
|
174
|
+
(0, import_sequelize_typescript2.Column)({
|
|
175
|
+
field: "title_id",
|
|
176
|
+
allowNull: true,
|
|
177
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
178
|
+
})
|
|
179
|
+
], msExecutive.prototype, "titleId", 2);
|
|
180
|
+
__decorateClass([
|
|
181
|
+
(0, import_sequelize_typescript2.Column)({
|
|
182
|
+
field: "first_name",
|
|
183
|
+
allowNull: true,
|
|
184
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
185
|
+
})
|
|
186
|
+
], msExecutive.prototype, "firstName", 2);
|
|
187
|
+
__decorateClass([
|
|
188
|
+
(0, import_sequelize_typescript2.Column)({
|
|
189
|
+
field: "last_name",
|
|
190
|
+
allowNull: true,
|
|
191
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
192
|
+
})
|
|
193
|
+
], msExecutive.prototype, "lastName", 2);
|
|
194
|
+
__decorateClass([
|
|
195
|
+
(0, import_sequelize_typescript2.Column)({
|
|
196
|
+
allowNull: true,
|
|
197
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
198
|
+
})
|
|
199
|
+
], msExecutive.prototype, "email", 2);
|
|
200
|
+
__decorateClass([
|
|
201
|
+
(0, import_sequelize_typescript2.Column)({
|
|
202
|
+
allowNull: true,
|
|
203
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
204
|
+
})
|
|
205
|
+
], msExecutive.prototype, "phone", 2);
|
|
206
|
+
__decorateClass([
|
|
207
|
+
(0, import_sequelize_typescript2.Column)({
|
|
208
|
+
allowNull: true,
|
|
209
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
210
|
+
})
|
|
211
|
+
], msExecutive.prototype, "fax", 2);
|
|
212
|
+
__decorateClass([
|
|
213
|
+
(0, import_sequelize_typescript2.Column)({
|
|
214
|
+
allowNull: true,
|
|
215
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
216
|
+
})
|
|
217
|
+
], msExecutive.prototype, "education", 2);
|
|
218
|
+
__decorateClass([
|
|
219
|
+
(0, import_sequelize_typescript2.Column)({
|
|
220
|
+
allowNull: true,
|
|
221
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
222
|
+
})
|
|
223
|
+
], msExecutive.prototype, "experience", 2);
|
|
224
|
+
__decorateClass([
|
|
225
|
+
(0, import_sequelize_typescript2.Column)({
|
|
226
|
+
allowNull: true,
|
|
227
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
228
|
+
})
|
|
229
|
+
], msExecutive.prototype, "image", 2);
|
|
230
|
+
__decorateClass([
|
|
231
|
+
(0, import_sequelize_typescript2.Column)({
|
|
232
|
+
allowNull: true,
|
|
233
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
234
|
+
})
|
|
235
|
+
], msExecutive.prototype, "sort", 2);
|
|
236
|
+
__decorateClass([
|
|
237
|
+
(0, import_sequelize_typescript2.Column)({
|
|
238
|
+
allowNull: true,
|
|
239
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
240
|
+
})
|
|
241
|
+
], msExecutive.prototype, "status", 2);
|
|
242
|
+
__decorateClass([
|
|
243
|
+
(0, import_sequelize_typescript2.Column)({
|
|
244
|
+
allowNull: true,
|
|
245
|
+
type: import_sequelize_typescript2.DataType.JSON
|
|
246
|
+
})
|
|
247
|
+
], msExecutive.prototype, "info", 2);
|
|
248
|
+
__decorateClass([
|
|
249
|
+
(0, import_sequelize_typescript2.Column)({
|
|
250
|
+
field: "created_by",
|
|
251
|
+
allowNull: true,
|
|
252
|
+
type: import_sequelize_typescript2.DataType.STRING(60)
|
|
253
|
+
})
|
|
254
|
+
], msExecutive.prototype, "createdBy", 2);
|
|
255
|
+
__decorateClass([
|
|
256
|
+
(0, import_sequelize_typescript2.Column)({
|
|
257
|
+
field: "created_date",
|
|
258
|
+
allowNull: true,
|
|
259
|
+
type: import_sequelize_typescript2.DataType.DATE
|
|
260
|
+
})
|
|
261
|
+
], msExecutive.prototype, "createdDate", 2);
|
|
262
|
+
__decorateClass([
|
|
263
|
+
(0, import_sequelize_typescript2.Column)({
|
|
264
|
+
field: "updated_by",
|
|
265
|
+
allowNull: true,
|
|
266
|
+
type: import_sequelize_typescript2.DataType.STRING(60)
|
|
267
|
+
})
|
|
268
|
+
], msExecutive.prototype, "updatedBy", 2);
|
|
269
|
+
__decorateClass([
|
|
270
|
+
(0, import_sequelize_typescript2.Column)({
|
|
271
|
+
field: "updated_date",
|
|
272
|
+
allowNull: true,
|
|
273
|
+
type: import_sequelize_typescript2.DataType.DATE
|
|
274
|
+
})
|
|
275
|
+
], msExecutive.prototype, "updatedDate", 2);
|
|
276
|
+
__decorateClass([
|
|
277
|
+
(0, import_sequelize_typescript2.BelongsTo)(() => msExecutiveGroup)
|
|
278
|
+
], msExecutive.prototype, "msExecutiveGroup", 2);
|
|
279
|
+
__decorateClass([
|
|
280
|
+
(0, import_sequelize_typescript2.BelongsTo)(() => msExecutivePosition)
|
|
281
|
+
], msExecutive.prototype, "msExecutivePosition", 2);
|
|
282
|
+
msExecutive = __decorateClass([
|
|
283
|
+
(0, import_sequelize_typescript2.Table)({
|
|
284
|
+
tableName: "ms_executive",
|
|
285
|
+
timestamps: false
|
|
286
|
+
})
|
|
287
|
+
], msExecutive);
|
|
288
|
+
|
|
289
|
+
// src/databases/tables/msExecutivePosition.ts
|
|
290
|
+
var msExecutivePosition = class extends import_sequelize_typescript3.Model {
|
|
291
|
+
};
|
|
292
|
+
__decorateClass([
|
|
293
|
+
(0, import_sequelize_typescript3.Column)({
|
|
294
|
+
primaryKey: true,
|
|
295
|
+
autoIncrement: true,
|
|
296
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
297
|
+
})
|
|
298
|
+
], msExecutivePosition.prototype, "id", 2);
|
|
299
|
+
__decorateClass([
|
|
300
|
+
(0, import_sequelize_typescript3.Column)({
|
|
301
|
+
allowNull: true,
|
|
302
|
+
type: import_sequelize_typescript3.DataType.STRING(255)
|
|
303
|
+
})
|
|
304
|
+
], msExecutivePosition.prototype, "name", 2);
|
|
305
|
+
__decorateClass([
|
|
306
|
+
(0, import_sequelize_typescript3.Column)({
|
|
307
|
+
allowNull: true,
|
|
308
|
+
type: import_sequelize_typescript3.DataType.STRING(255)
|
|
309
|
+
})
|
|
310
|
+
], msExecutivePosition.prototype, "description", 2);
|
|
311
|
+
__decorateClass([
|
|
312
|
+
(0, import_sequelize_typescript3.Column)({
|
|
313
|
+
allowNull: true,
|
|
314
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
315
|
+
})
|
|
316
|
+
], msExecutivePosition.prototype, "sort", 2);
|
|
317
|
+
__decorateClass([
|
|
318
|
+
(0, import_sequelize_typescript3.Column)({
|
|
319
|
+
allowNull: true,
|
|
320
|
+
type: import_sequelize_typescript3.DataType.INTEGER
|
|
321
|
+
})
|
|
322
|
+
], msExecutivePosition.prototype, "status", 2);
|
|
323
|
+
__decorateClass([
|
|
324
|
+
(0, import_sequelize_typescript3.Column)({
|
|
325
|
+
allowNull: true,
|
|
326
|
+
type: import_sequelize_typescript3.DataType.JSON
|
|
327
|
+
})
|
|
328
|
+
], msExecutivePosition.prototype, "info", 2);
|
|
329
|
+
__decorateClass([
|
|
330
|
+
(0, import_sequelize_typescript3.Column)({
|
|
331
|
+
field: "created_by",
|
|
332
|
+
allowNull: true,
|
|
333
|
+
type: import_sequelize_typescript3.DataType.STRING(60)
|
|
334
|
+
})
|
|
335
|
+
], msExecutivePosition.prototype, "createdBy", 2);
|
|
336
|
+
__decorateClass([
|
|
337
|
+
(0, import_sequelize_typescript3.Column)({
|
|
338
|
+
field: "created_date",
|
|
339
|
+
allowNull: true,
|
|
340
|
+
type: import_sequelize_typescript3.DataType.DATE
|
|
341
|
+
})
|
|
342
|
+
], msExecutivePosition.prototype, "createdDate", 2);
|
|
343
|
+
__decorateClass([
|
|
344
|
+
(0, import_sequelize_typescript3.Column)({
|
|
345
|
+
field: "updated_by",
|
|
346
|
+
allowNull: true,
|
|
347
|
+
type: import_sequelize_typescript3.DataType.STRING(60)
|
|
348
|
+
})
|
|
349
|
+
], msExecutivePosition.prototype, "updatedBy", 2);
|
|
350
|
+
__decorateClass([
|
|
351
|
+
(0, import_sequelize_typescript3.Column)({
|
|
352
|
+
field: "updated_date",
|
|
353
|
+
allowNull: true,
|
|
354
|
+
type: import_sequelize_typescript3.DataType.DATE
|
|
355
|
+
})
|
|
356
|
+
], msExecutivePosition.prototype, "updatedDate", 2);
|
|
357
|
+
__decorateClass([
|
|
358
|
+
(0, import_sequelize_typescript3.HasMany)(() => msExecutive, {
|
|
359
|
+
sourceKey: "id"
|
|
360
|
+
})
|
|
361
|
+
], msExecutivePosition.prototype, "msExecutives", 2);
|
|
362
|
+
msExecutivePosition = __decorateClass([
|
|
363
|
+
(0, import_sequelize_typescript3.Table)({
|
|
364
|
+
tableName: "ms_executive_position",
|
|
365
|
+
timestamps: false
|
|
366
|
+
})
|
|
367
|
+
], msExecutivePosition);
|
|
368
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
369
|
+
0 && (module.exports = {
|
|
370
|
+
msExecutivePosition
|
|
371
|
+
});
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { Model } from 'sequelize-typescript';
|
|
2
|
+
|
|
3
|
+
interface msExecutiveGroupAttributes {
|
|
4
|
+
id?: number;
|
|
5
|
+
uuid?: string;
|
|
6
|
+
name?: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
startDate?: string;
|
|
9
|
+
endDate?: string;
|
|
10
|
+
sort?: number;
|
|
11
|
+
status?: number;
|
|
12
|
+
info?: object;
|
|
13
|
+
createdBy?: string;
|
|
14
|
+
createdDate?: Date;
|
|
15
|
+
updatedBy?: string;
|
|
16
|
+
updatedDate?: Date;
|
|
17
|
+
}
|
|
18
|
+
declare class msExecutiveGroup extends Model<msExecutiveGroupAttributes, msExecutiveGroupAttributes> implements msExecutiveGroupAttributes {
|
|
19
|
+
id?: number;
|
|
20
|
+
uuid?: string;
|
|
21
|
+
name?: string;
|
|
22
|
+
description?: string;
|
|
23
|
+
startDate?: string;
|
|
24
|
+
endDate?: string;
|
|
25
|
+
sort?: number;
|
|
26
|
+
status?: number;
|
|
27
|
+
info?: object;
|
|
28
|
+
createdBy?: string;
|
|
29
|
+
createdDate?: Date;
|
|
30
|
+
updatedBy?: string;
|
|
31
|
+
updatedDate?: Date;
|
|
32
|
+
msExecutives?: msExecutive[];
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
interface msExecutivePositionAttributes {
|
|
36
|
+
id?: number;
|
|
37
|
+
name?: string;
|
|
38
|
+
description?: string;
|
|
39
|
+
sort?: number;
|
|
40
|
+
status?: number;
|
|
41
|
+
info?: object;
|
|
42
|
+
createdBy?: string;
|
|
43
|
+
createdDate?: Date;
|
|
44
|
+
updatedBy?: string;
|
|
45
|
+
updatedDate?: Date;
|
|
46
|
+
}
|
|
47
|
+
declare class msExecutivePosition extends Model<msExecutivePositionAttributes, msExecutivePositionAttributes> implements msExecutivePositionAttributes {
|
|
48
|
+
id?: number;
|
|
49
|
+
name?: string;
|
|
50
|
+
description?: string;
|
|
51
|
+
sort?: number;
|
|
52
|
+
status?: number;
|
|
53
|
+
info?: object;
|
|
54
|
+
createdBy?: string;
|
|
55
|
+
createdDate?: Date;
|
|
56
|
+
updatedBy?: string;
|
|
57
|
+
updatedDate?: Date;
|
|
58
|
+
msExecutives?: msExecutive[];
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
interface msExecutiveAttributes {
|
|
62
|
+
id?: number;
|
|
63
|
+
groupId?: number;
|
|
64
|
+
positionId?: number;
|
|
65
|
+
positionOther?: string;
|
|
66
|
+
titleId?: number;
|
|
67
|
+
firstName?: string;
|
|
68
|
+
lastName?: string;
|
|
69
|
+
email?: string;
|
|
70
|
+
phone?: string;
|
|
71
|
+
fax?: string;
|
|
72
|
+
education?: string;
|
|
73
|
+
experience?: string;
|
|
74
|
+
image?: string;
|
|
75
|
+
sort?: number;
|
|
76
|
+
status?: string;
|
|
77
|
+
info?: object;
|
|
78
|
+
createdBy?: string;
|
|
79
|
+
createdDate?: Date;
|
|
80
|
+
updatedBy?: string;
|
|
81
|
+
updatedDate?: Date;
|
|
82
|
+
}
|
|
83
|
+
declare class msExecutive extends Model<msExecutiveAttributes, msExecutiveAttributes> implements msExecutiveAttributes {
|
|
84
|
+
id?: number;
|
|
85
|
+
groupId?: number;
|
|
86
|
+
positionId?: number;
|
|
87
|
+
positionOther?: string;
|
|
88
|
+
titleId?: number;
|
|
89
|
+
firstName?: string;
|
|
90
|
+
lastName?: string;
|
|
91
|
+
email?: string;
|
|
92
|
+
phone?: string;
|
|
93
|
+
fax?: string;
|
|
94
|
+
education?: string;
|
|
95
|
+
experience?: string;
|
|
96
|
+
image?: string;
|
|
97
|
+
sort?: number;
|
|
98
|
+
status?: string;
|
|
99
|
+
info?: object;
|
|
100
|
+
createdBy?: string;
|
|
101
|
+
createdDate?: Date;
|
|
102
|
+
updatedBy?: string;
|
|
103
|
+
updatedDate?: Date;
|
|
104
|
+
msExecutiveGroup?: msExecutiveGroup;
|
|
105
|
+
msExecutivePosition?: msExecutivePosition;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
export { msExecutive as a, type msExecutiveGroupAttributes as b, msExecutiveGroup as c, type msExecutivePositionAttributes as d, msExecutivePosition as e, type msExecutiveAttributes as m };
|