@admc-go-th/admc-library 1.0.137 → 1.0.138
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.
|
@@ -7,6 +7,7 @@ export interface appScoreTypeAttributes {
|
|
|
7
7
|
name?: string;
|
|
8
8
|
detail?: string;
|
|
9
9
|
color?: string;
|
|
10
|
+
fileUuid?: string;
|
|
10
11
|
status?: number;
|
|
11
12
|
createdBy?: string;
|
|
12
13
|
createdDate?: Date;
|
|
@@ -45,6 +46,13 @@ export class appScoreType extends Model<appScoreTypeAttributes, appScoreTypeAttr
|
|
|
45
46
|
})
|
|
46
47
|
declare color?: string;
|
|
47
48
|
|
|
49
|
+
@Column({
|
|
50
|
+
field: "file_uuid",
|
|
51
|
+
allowNull: true,
|
|
52
|
+
type: DataType.STRING(100)
|
|
53
|
+
})
|
|
54
|
+
declare fileUuid?: string;
|
|
55
|
+
|
|
48
56
|
@Column({
|
|
49
57
|
allowNull: true,
|
|
50
58
|
type: DataType.INTEGER
|
|
@@ -5,6 +5,7 @@ interface appScoreTypeAttributes {
|
|
|
5
5
|
name?: string;
|
|
6
6
|
detail?: string;
|
|
7
7
|
color?: string;
|
|
8
|
+
fileUuid?: string;
|
|
8
9
|
status?: number;
|
|
9
10
|
createdBy?: string;
|
|
10
11
|
createdDate?: Date;
|
|
@@ -16,6 +17,7 @@ declare class appScoreType extends Model<appScoreTypeAttributes, appScoreTypeAtt
|
|
|
16
17
|
name?: string;
|
|
17
18
|
detail?: string;
|
|
18
19
|
color?: string;
|
|
20
|
+
fileUuid?: string;
|
|
19
21
|
status?: number;
|
|
20
22
|
createdBy?: string;
|
|
21
23
|
createdDate?: Date;
|
|
@@ -59,6 +59,13 @@ __decorateClass([
|
|
|
59
59
|
type: import_sequelize_typescript.DataType.STRING(10)
|
|
60
60
|
})
|
|
61
61
|
], appScoreType.prototype, "color", 2);
|
|
62
|
+
__decorateClass([
|
|
63
|
+
(0, import_sequelize_typescript.Column)({
|
|
64
|
+
field: "file_uuid",
|
|
65
|
+
allowNull: true,
|
|
66
|
+
type: import_sequelize_typescript.DataType.STRING(100)
|
|
67
|
+
})
|
|
68
|
+
], appScoreType.prototype, "fileUuid", 2);
|
|
62
69
|
__decorateClass([
|
|
63
70
|
(0, import_sequelize_typescript.Column)({
|
|
64
71
|
allowNull: true,
|
|
@@ -1776,6 +1776,13 @@ __decorateClass([
|
|
|
1776
1776
|
type: import_sequelize_typescript13.DataType.STRING(10)
|
|
1777
1777
|
})
|
|
1778
1778
|
], appScoreType.prototype, "color", 2);
|
|
1779
|
+
__decorateClass([
|
|
1780
|
+
(0, import_sequelize_typescript13.Column)({
|
|
1781
|
+
field: "file_uuid",
|
|
1782
|
+
allowNull: true,
|
|
1783
|
+
type: import_sequelize_typescript13.DataType.STRING(100)
|
|
1784
|
+
})
|
|
1785
|
+
], appScoreType.prototype, "fileUuid", 2);
|
|
1779
1786
|
__decorateClass([
|
|
1780
1787
|
(0, import_sequelize_typescript13.Column)({
|
|
1781
1788
|
allowNull: true,
|