@admc-go-th/admc-library 1.0.120 → 1.0.122

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.
Files changed (42) hide show
  1. package/{appBlessings-peNBIrhQ.d.ts → appBlessings-DcXFhNjP.d.ts} +4 -2
  2. package/databases/schema/appBlessings.ts +11 -3
  3. package/databases/schema/appScore.ts +154 -0
  4. package/databases/schema/appScoreData.ts +101 -0
  5. package/databases/schema/appScorePerson.ts +101 -0
  6. package/databases/schema/index.ts +5 -0
  7. package/databases/schema/logsMember.ts +60 -0
  8. package/databases/schema/mdApplication.ts +12 -3
  9. package/databases/schema/mdEgp.ts +114 -0
  10. package/databases/schema/msExecutiveGroup.ts +7 -0
  11. package/databases/schema/msExecutiveLevel.ts +119 -0
  12. package/databases/schema/msHoliday.ts +29 -6
  13. package/databases/tables/appBlessings.d.ts +1 -1
  14. package/databases/tables/appBlessings.js +8 -1
  15. package/databases/tables/appBlessingsTransaction.d.ts +1 -1
  16. package/databases/tables/appBlessingsTransaction.js +8 -1
  17. package/databases/tables/appScore.d.ts +44 -0
  18. package/databases/tables/appScore.js +168 -0
  19. package/databases/tables/appScoreData.d.ts +30 -0
  20. package/databases/tables/appScoreData.js +122 -0
  21. package/databases/tables/appScorePerson.d.ts +30 -0
  22. package/databases/tables/appScorePerson.js +122 -0
  23. package/databases/tables/index.d.ts +7 -2
  24. package/databases/tables/index.js +2632 -2121
  25. package/databases/tables/logsMember.d.ts +20 -0
  26. package/databases/tables/logsMember.js +86 -0
  27. package/databases/tables/mdApplication.d.ts +4 -2
  28. package/databases/tables/mdApplication.js +9 -1
  29. package/databases/tables/mdEgp.d.ts +34 -0
  30. package/databases/tables/mdEgp.js +133 -0
  31. package/databases/tables/msExecutive.d.ts +1 -1
  32. package/databases/tables/msExecutive.js +6 -0
  33. package/databases/tables/msExecutiveGroup.d.ts +1 -1
  34. package/databases/tables/msExecutiveGroup.js +6 -0
  35. package/databases/tables/msExecutiveLevel.d.ts +36 -0
  36. package/databases/tables/msExecutiveLevel.js +137 -0
  37. package/databases/tables/msExecutivePosition.d.ts +1 -1
  38. package/databases/tables/msExecutivePosition.js +6 -0
  39. package/databases/tables/msHoliday.d.ts +10 -4
  40. package/databases/tables/msHoliday.js +23 -3
  41. package/{msExecutive-B7lTHxSZ.d.ts → msExecutive-BFeU4P0-.d.ts} +2 -0
  42. package/package.json +1 -1
@@ -0,0 +1,119 @@
1
+ import {
2
+ Model, Table, Column, DataType, Index, Sequelize, ForeignKey
3
+ } from "sequelize-typescript";
4
+
5
+ export interface msExecutiveLevelAttributes {
6
+ id?: number;
7
+ groupId?: number;
8
+ level?: number;
9
+ name?: string;
10
+ description?: string;
11
+ sort?: number;
12
+ status?: number;
13
+ updatedInfo?: string;
14
+ remark?: string;
15
+ info?: object;
16
+ createdBy?: string;
17
+ createdDate?: Date;
18
+ updatedBy?: string;
19
+ updatedDate?: Date;
20
+ }
21
+
22
+ @Table({
23
+ tableName: "ms_executive_level",
24
+ timestamps: false
25
+ })
26
+ export class msExecutiveLevel extends Model<msExecutiveLevelAttributes, msExecutiveLevelAttributes> implements msExecutiveLevelAttributes {
27
+
28
+ @Column({
29
+ primaryKey: true,
30
+ autoIncrement: true,
31
+ type: DataType.INTEGER
32
+ })
33
+ declare id?: number;
34
+
35
+ @Column({
36
+ field: "group_id",
37
+ allowNull: true,
38
+ type: DataType.INTEGER
39
+ })
40
+ declare groupId?: number;
41
+
42
+ @Column({
43
+ allowNull: true,
44
+ type: DataType.INTEGER
45
+ })
46
+ declare level?: number;
47
+
48
+ @Column({
49
+ allowNull: true,
50
+ type: DataType.STRING(255)
51
+ })
52
+ declare name?: string;
53
+
54
+ @Column({
55
+ allowNull: true,
56
+ type: DataType.STRING(255)
57
+ })
58
+ declare description?: string;
59
+
60
+ @Column({
61
+ allowNull: true,
62
+ type: DataType.INTEGER
63
+ })
64
+ declare sort?: number;
65
+
66
+ @Column({
67
+ allowNull: true,
68
+ type: DataType.INTEGER
69
+ })
70
+ declare status?: number;
71
+
72
+ @Column({
73
+ field: "updated_info",
74
+ allowNull: true,
75
+ type: DataType.STRING(255)
76
+ })
77
+ declare updatedInfo?: string;
78
+
79
+ @Column({
80
+ allowNull: true,
81
+ type: DataType.STRING
82
+ })
83
+ declare remark?: string;
84
+
85
+ @Column({
86
+ allowNull: true,
87
+ type: DataType.JSON
88
+ })
89
+ declare info?: object;
90
+
91
+ @Column({
92
+ field: "created_by",
93
+ allowNull: true,
94
+ type: DataType.STRING(60)
95
+ })
96
+ declare createdBy?: string;
97
+
98
+ @Column({
99
+ field: "created_date",
100
+ allowNull: true,
101
+ type: DataType.DATE
102
+ })
103
+ declare createdDate?: Date;
104
+
105
+ @Column({
106
+ field: "updated_by",
107
+ allowNull: true,
108
+ type: DataType.STRING(60)
109
+ })
110
+ declare updatedBy?: string;
111
+
112
+ @Column({
113
+ field: "updated_date",
114
+ allowNull: true,
115
+ type: DataType.DATE
116
+ })
117
+ declare updatedDate?: Date;
118
+
119
+ }
@@ -4,9 +4,12 @@ import {
4
4
 
5
5
  export interface msHolidayAttributes {
6
6
  id?: number;
7
+ siteId?: number;
8
+ typeId?: number;
9
+ year?: number;
7
10
  name?: string;
8
- checkDate?: string;
9
- status?: string;
11
+ atDate?: string;
12
+ status?: number;
10
13
  createdBy?: string;
11
14
  createdDate?: Date;
12
15
  updatedBy?: string;
@@ -26,6 +29,26 @@ export class msHoliday extends Model<msHolidayAttributes, msHolidayAttributes> i
26
29
  })
27
30
  declare id?: number;
28
31
 
32
+ @Column({
33
+ field: "site_id",
34
+ allowNull: true,
35
+ type: DataType.INTEGER
36
+ })
37
+ declare siteId?: number;
38
+
39
+ @Column({
40
+ field: "type_id",
41
+ allowNull: true,
42
+ type: DataType.INTEGER
43
+ })
44
+ declare typeId?: number;
45
+
46
+ @Column({
47
+ allowNull: true,
48
+ type: DataType.INTEGER
49
+ })
50
+ declare year?: number;
51
+
29
52
  @Column({
30
53
  allowNull: true,
31
54
  type: DataType.STRING(255)
@@ -33,17 +56,17 @@ export class msHoliday extends Model<msHolidayAttributes, msHolidayAttributes> i
33
56
  declare name?: string;
34
57
 
35
58
  @Column({
36
- field: "check_date",
59
+ field: "at_date",
37
60
  allowNull: true,
38
61
  type: DataType.DATEONLY
39
62
  })
40
- declare checkDate?: string;
63
+ declare atDate?: string;
41
64
 
42
65
  @Column({
43
66
  allowNull: true,
44
- type: DataType.STRING(255)
67
+ type: DataType.INTEGER
45
68
  })
46
- declare status?: string;
69
+ declare status?: number;
47
70
 
48
71
  @Column({
49
72
  field: "created_by",
@@ -1,2 +1,2 @@
1
1
  import 'sequelize-typescript';
2
- export { b as appBlessings, a as appBlessingsAttributes } from '../../appBlessings-peNBIrhQ.js';
2
+ export { b as appBlessings, a as appBlessingsAttributes } from '../../appBlessings-DcXFhNjP.js';
@@ -146,9 +146,16 @@ __decorateClass([
146
146
  __decorateClass([
147
147
  (0, import_sequelize_typescript2.Column)({
148
148
  allowNull: true,
149
- type: import_sequelize_typescript2.DataType.STRING
149
+ type: import_sequelize_typescript2.DataType.JSON
150
150
  })
151
151
  ], appBlessings.prototype, "words", 2);
152
+ __decorateClass([
153
+ (0, import_sequelize_typescript2.Column)({
154
+ field: "image_cover",
155
+ allowNull: true,
156
+ type: import_sequelize_typescript2.DataType.STRING(60)
157
+ })
158
+ ], appBlessings.prototype, "imageCover", 2);
152
159
  __decorateClass([
153
160
  (0, import_sequelize_typescript2.Column)({
154
161
  allowNull: true,
@@ -1,2 +1,2 @@
1
1
  import 'sequelize-typescript';
2
- export { d as appBlessingsTransaction, c as appBlessingsTransactionAttributes } from '../../appBlessings-peNBIrhQ.js';
2
+ export { d as appBlessingsTransaction, c as appBlessingsTransactionAttributes } from '../../appBlessings-DcXFhNjP.js';
@@ -65,9 +65,16 @@ __decorateClass([
65
65
  __decorateClass([
66
66
  (0, import_sequelize_typescript.Column)({
67
67
  allowNull: true,
68
- type: import_sequelize_typescript.DataType.STRING
68
+ type: import_sequelize_typescript.DataType.JSON
69
69
  })
70
70
  ], appBlessings.prototype, "words", 2);
71
+ __decorateClass([
72
+ (0, import_sequelize_typescript.Column)({
73
+ field: "image_cover",
74
+ allowNull: true,
75
+ type: import_sequelize_typescript.DataType.STRING(60)
76
+ })
77
+ ], appBlessings.prototype, "imageCover", 2);
71
78
  __decorateClass([
72
79
  (0, import_sequelize_typescript.Column)({
73
80
  allowNull: true,
@@ -0,0 +1,44 @@
1
+ import { Model } from 'sequelize-typescript';
2
+
3
+ interface appScoreAttributes {
4
+ id?: number;
5
+ typeId?: number;
6
+ name?: string;
7
+ description?: string;
8
+ loginLabel?: string;
9
+ topicInfo?: object;
10
+ labelInfo?: object;
11
+ note?: string;
12
+ scoreInfo?: object;
13
+ signInfo?: object;
14
+ startDate?: Date;
15
+ endDate?: Date;
16
+ status?: number;
17
+ apiInfo?: object;
18
+ createdBy?: string;
19
+ createdDate?: Date;
20
+ updatedBy?: string;
21
+ updatedDate?: Date;
22
+ }
23
+ declare class appScore extends Model<appScoreAttributes, appScoreAttributes> implements appScoreAttributes {
24
+ id?: number;
25
+ typeId?: number;
26
+ name?: string;
27
+ description?: string;
28
+ loginLabel?: string;
29
+ topicInfo?: object;
30
+ labelInfo?: object;
31
+ note?: string;
32
+ scoreInfo?: object;
33
+ signInfo?: object;
34
+ startDate?: Date;
35
+ endDate?: Date;
36
+ status?: number;
37
+ apiInfo?: object;
38
+ createdBy?: string;
39
+ createdDate?: Date;
40
+ updatedBy?: string;
41
+ updatedDate?: Date;
42
+ }
43
+
44
+ export { appScore, type appScoreAttributes };
@@ -0,0 +1,168 @@
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/appScore.ts
29
+ var appScore_exports = {};
30
+ __export(appScore_exports, {
31
+ appScore: () => appScore
32
+ });
33
+ module.exports = __toCommonJS(appScore_exports);
34
+ var import_sequelize_typescript = require("sequelize-typescript");
35
+ var appScore = class extends import_sequelize_typescript.Model {
36
+ };
37
+ __decorateClass([
38
+ (0, import_sequelize_typescript.Column)({
39
+ primaryKey: true,
40
+ autoIncrement: true,
41
+ type: import_sequelize_typescript.DataType.INTEGER
42
+ })
43
+ ], appScore.prototype, "id", 2);
44
+ __decorateClass([
45
+ (0, import_sequelize_typescript.Column)({
46
+ field: "type_id",
47
+ allowNull: true,
48
+ type: import_sequelize_typescript.DataType.INTEGER
49
+ })
50
+ ], appScore.prototype, "typeId", 2);
51
+ __decorateClass([
52
+ (0, import_sequelize_typescript.Column)({
53
+ allowNull: true,
54
+ type: import_sequelize_typescript.DataType.STRING(255)
55
+ })
56
+ ], appScore.prototype, "name", 2);
57
+ __decorateClass([
58
+ (0, import_sequelize_typescript.Column)({
59
+ allowNull: true,
60
+ type: import_sequelize_typescript.DataType.STRING(255)
61
+ })
62
+ ], appScore.prototype, "description", 2);
63
+ __decorateClass([
64
+ (0, import_sequelize_typescript.Column)({
65
+ field: "login_label",
66
+ allowNull: true,
67
+ type: import_sequelize_typescript.DataType.STRING(255)
68
+ })
69
+ ], appScore.prototype, "loginLabel", 2);
70
+ __decorateClass([
71
+ (0, import_sequelize_typescript.Column)({
72
+ field: "topic_info",
73
+ allowNull: true,
74
+ type: import_sequelize_typescript.DataType.JSON
75
+ })
76
+ ], appScore.prototype, "topicInfo", 2);
77
+ __decorateClass([
78
+ (0, import_sequelize_typescript.Column)({
79
+ field: "label_info",
80
+ allowNull: true,
81
+ type: import_sequelize_typescript.DataType.JSON
82
+ })
83
+ ], appScore.prototype, "labelInfo", 2);
84
+ __decorateClass([
85
+ (0, import_sequelize_typescript.Column)({
86
+ allowNull: true,
87
+ type: import_sequelize_typescript.DataType.STRING
88
+ })
89
+ ], appScore.prototype, "note", 2);
90
+ __decorateClass([
91
+ (0, import_sequelize_typescript.Column)({
92
+ field: "score_info",
93
+ allowNull: true,
94
+ type: import_sequelize_typescript.DataType.JSON
95
+ })
96
+ ], appScore.prototype, "scoreInfo", 2);
97
+ __decorateClass([
98
+ (0, import_sequelize_typescript.Column)({
99
+ field: "sign_info",
100
+ allowNull: true,
101
+ type: import_sequelize_typescript.DataType.JSON
102
+ })
103
+ ], appScore.prototype, "signInfo", 2);
104
+ __decorateClass([
105
+ (0, import_sequelize_typescript.Column)({
106
+ field: "start_date",
107
+ allowNull: true,
108
+ type: import_sequelize_typescript.DataType.DATE
109
+ })
110
+ ], appScore.prototype, "startDate", 2);
111
+ __decorateClass([
112
+ (0, import_sequelize_typescript.Column)({
113
+ field: "end_date",
114
+ allowNull: true,
115
+ type: import_sequelize_typescript.DataType.DATE
116
+ })
117
+ ], appScore.prototype, "endDate", 2);
118
+ __decorateClass([
119
+ (0, import_sequelize_typescript.Column)({
120
+ allowNull: true,
121
+ type: import_sequelize_typescript.DataType.INTEGER
122
+ })
123
+ ], appScore.prototype, "status", 2);
124
+ __decorateClass([
125
+ (0, import_sequelize_typescript.Column)({
126
+ field: "api_info",
127
+ allowNull: true,
128
+ type: import_sequelize_typescript.DataType.JSON
129
+ })
130
+ ], appScore.prototype, "apiInfo", 2);
131
+ __decorateClass([
132
+ (0, import_sequelize_typescript.Column)({
133
+ field: "created_by",
134
+ allowNull: true,
135
+ type: import_sequelize_typescript.DataType.STRING(60)
136
+ })
137
+ ], appScore.prototype, "createdBy", 2);
138
+ __decorateClass([
139
+ (0, import_sequelize_typescript.Column)({
140
+ field: "created_date",
141
+ allowNull: true,
142
+ type: import_sequelize_typescript.DataType.DATE
143
+ })
144
+ ], appScore.prototype, "createdDate", 2);
145
+ __decorateClass([
146
+ (0, import_sequelize_typescript.Column)({
147
+ field: "updated_by",
148
+ allowNull: true,
149
+ type: import_sequelize_typescript.DataType.STRING(60)
150
+ })
151
+ ], appScore.prototype, "updatedBy", 2);
152
+ __decorateClass([
153
+ (0, import_sequelize_typescript.Column)({
154
+ field: "updated_date",
155
+ allowNull: true,
156
+ type: import_sequelize_typescript.DataType.DATE
157
+ })
158
+ ], appScore.prototype, "updatedDate", 2);
159
+ appScore = __decorateClass([
160
+ (0, import_sequelize_typescript.Table)({
161
+ tableName: "app_score",
162
+ timestamps: false
163
+ })
164
+ ], appScore);
165
+ // Annotate the CommonJS export names for ESM import in node:
166
+ 0 && (module.exports = {
167
+ appScore
168
+ });
@@ -0,0 +1,30 @@
1
+ import { Model } from 'sequelize-typescript';
2
+
3
+ interface appScoreDataAttributes {
4
+ id?: number;
5
+ scoreId?: number;
6
+ personId?: number;
7
+ personNo?: string;
8
+ dataInfo?: object;
9
+ scoreInfo?: object;
10
+ status?: number;
11
+ createdBy?: string;
12
+ createdDate?: Date;
13
+ updatedBy?: string;
14
+ updatedDate?: Date;
15
+ }
16
+ declare class appScoreData extends Model<appScoreDataAttributes, appScoreDataAttributes> implements appScoreDataAttributes {
17
+ id?: number;
18
+ scoreId?: number;
19
+ personId?: number;
20
+ personNo?: string;
21
+ dataInfo?: object;
22
+ scoreInfo?: object;
23
+ status?: number;
24
+ createdBy?: string;
25
+ createdDate?: Date;
26
+ updatedBy?: string;
27
+ updatedDate?: Date;
28
+ }
29
+
30
+ export { appScoreData, type appScoreDataAttributes };
@@ -0,0 +1,122 @@
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/appScoreData.ts
29
+ var appScoreData_exports = {};
30
+ __export(appScoreData_exports, {
31
+ appScoreData: () => appScoreData
32
+ });
33
+ module.exports = __toCommonJS(appScoreData_exports);
34
+ var import_sequelize_typescript = require("sequelize-typescript");
35
+ var appScoreData = class extends import_sequelize_typescript.Model {
36
+ };
37
+ __decorateClass([
38
+ (0, import_sequelize_typescript.Column)({
39
+ primaryKey: true,
40
+ autoIncrement: true,
41
+ type: import_sequelize_typescript.DataType.INTEGER
42
+ })
43
+ ], appScoreData.prototype, "id", 2);
44
+ __decorateClass([
45
+ (0, import_sequelize_typescript.Column)({
46
+ field: "score_id",
47
+ allowNull: true,
48
+ type: import_sequelize_typescript.DataType.INTEGER
49
+ })
50
+ ], appScoreData.prototype, "scoreId", 2);
51
+ __decorateClass([
52
+ (0, import_sequelize_typescript.Column)({
53
+ field: "person_id",
54
+ allowNull: true,
55
+ type: import_sequelize_typescript.DataType.INTEGER
56
+ })
57
+ ], appScoreData.prototype, "personId", 2);
58
+ __decorateClass([
59
+ (0, import_sequelize_typescript.Column)({
60
+ field: "person_no",
61
+ allowNull: true,
62
+ type: import_sequelize_typescript.DataType.STRING(20)
63
+ })
64
+ ], appScoreData.prototype, "personNo", 2);
65
+ __decorateClass([
66
+ (0, import_sequelize_typescript.Column)({
67
+ field: "data_info",
68
+ allowNull: true,
69
+ type: import_sequelize_typescript.DataType.JSON
70
+ })
71
+ ], appScoreData.prototype, "dataInfo", 2);
72
+ __decorateClass([
73
+ (0, import_sequelize_typescript.Column)({
74
+ field: "score_info",
75
+ allowNull: true,
76
+ type: import_sequelize_typescript.DataType.JSON
77
+ })
78
+ ], appScoreData.prototype, "scoreInfo", 2);
79
+ __decorateClass([
80
+ (0, import_sequelize_typescript.Column)({
81
+ allowNull: true,
82
+ type: import_sequelize_typescript.DataType.INTEGER
83
+ })
84
+ ], appScoreData.prototype, "status", 2);
85
+ __decorateClass([
86
+ (0, import_sequelize_typescript.Column)({
87
+ field: "created_by",
88
+ allowNull: true,
89
+ type: import_sequelize_typescript.DataType.STRING(60)
90
+ })
91
+ ], appScoreData.prototype, "createdBy", 2);
92
+ __decorateClass([
93
+ (0, import_sequelize_typescript.Column)({
94
+ field: "created_date",
95
+ allowNull: true,
96
+ type: import_sequelize_typescript.DataType.DATE
97
+ })
98
+ ], appScoreData.prototype, "createdDate", 2);
99
+ __decorateClass([
100
+ (0, import_sequelize_typescript.Column)({
101
+ field: "updated_by",
102
+ allowNull: true,
103
+ type: import_sequelize_typescript.DataType.STRING(60)
104
+ })
105
+ ], appScoreData.prototype, "updatedBy", 2);
106
+ __decorateClass([
107
+ (0, import_sequelize_typescript.Column)({
108
+ field: "updated_date",
109
+ allowNull: true,
110
+ type: import_sequelize_typescript.DataType.DATE
111
+ })
112
+ ], appScoreData.prototype, "updatedDate", 2);
113
+ appScoreData = __decorateClass([
114
+ (0, import_sequelize_typescript.Table)({
115
+ tableName: "app_score_data",
116
+ timestamps: false
117
+ })
118
+ ], appScoreData);
119
+ // Annotate the CommonJS export names for ESM import in node:
120
+ 0 && (module.exports = {
121
+ appScoreData
122
+ });
@@ -0,0 +1,30 @@
1
+ import { Model } from 'sequelize-typescript';
2
+
3
+ interface appScorePersonAttributes {
4
+ id?: number;
5
+ scoreId?: number;
6
+ personCardNo?: string;
7
+ personNo?: string;
8
+ personFullName?: string;
9
+ personOrganization?: string;
10
+ status?: number;
11
+ createdBy?: string;
12
+ createdDate?: Date;
13
+ updatedBy?: string;
14
+ updatedDate?: Date;
15
+ }
16
+ declare class appScorePerson extends Model<appScorePersonAttributes, appScorePersonAttributes> implements appScorePersonAttributes {
17
+ id?: number;
18
+ scoreId?: number;
19
+ personCardNo?: string;
20
+ personNo?: string;
21
+ personFullName?: string;
22
+ personOrganization?: string;
23
+ status?: number;
24
+ createdBy?: string;
25
+ createdDate?: Date;
26
+ updatedBy?: string;
27
+ updatedDate?: Date;
28
+ }
29
+
30
+ export { appScorePerson, type appScorePersonAttributes };