@admc-go-th/admc-library 1.0.64 → 1.0.65
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.
|
@@ -18,6 +18,7 @@ export * from "./mdEbookGroup";
|
|
|
18
18
|
export * from "./mdFaq";
|
|
19
19
|
export * from "./mdFaqGroup";
|
|
20
20
|
export * from "./mdFormAdvance_1";
|
|
21
|
+
export * from "./mdFormAdvance_2";
|
|
21
22
|
export * from "./mdLink";
|
|
22
23
|
export * from "./mdLinkGroup";
|
|
23
24
|
export * from "./mdNews";
|
|
@@ -25,12 +26,12 @@ export * from "./mdNewsGroup";
|
|
|
25
26
|
export * from "./mdPopup";
|
|
26
27
|
export * from "./mdQuestionnaire";
|
|
27
28
|
export * from "./mdSetting";
|
|
29
|
+
export * from "./mdWords";
|
|
28
30
|
export * from "./member";
|
|
29
31
|
export * from "./menu";
|
|
30
32
|
export * from "./msModule";
|
|
31
33
|
export * from "./oauthAccessToken";
|
|
32
34
|
export * from "./oauthRefreshToken";
|
|
33
|
-
export * from "./setting";
|
|
34
35
|
export * from "./settings";
|
|
35
36
|
export * from "./userCenterV";
|
|
36
37
|
export * from "./userRoleV";
|
|
@@ -1,98 +1,98 @@
|
|
|
1
|
-
import {
|
|
2
|
-
Model, Table, Column, DataType, Index, Sequelize, ForeignKey
|
|
3
|
-
} from "sequelize-typescript";
|
|
4
|
-
|
|
5
|
-
export interface mdFormAdvance_2Attributes {
|
|
6
|
-
id?: number;
|
|
7
|
-
uuid?: string;
|
|
8
|
-
keyName?: string;
|
|
9
|
-
name?: string;
|
|
10
|
-
words?: string;
|
|
11
|
-
status?: number;
|
|
12
|
-
ipAddress?: string;
|
|
13
|
-
createdBy?: string;
|
|
14
|
-
createdDate?: Date;
|
|
15
|
-
updatedBy?: string;
|
|
16
|
-
updatedDate?: Date;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@Table({
|
|
20
|
-
tableName: "md_form_advance_2",
|
|
21
|
-
timestamps: false
|
|
22
|
-
})
|
|
23
|
-
export class mdFormAdvance_2 extends Model<mdFormAdvance_2Attributes, mdFormAdvance_2Attributes> implements mdFormAdvance_2Attributes {
|
|
24
|
-
|
|
25
|
-
@Column({
|
|
26
|
-
primaryKey: true,
|
|
27
|
-
autoIncrement: true,
|
|
28
|
-
type: DataType.INTEGER
|
|
29
|
-
})
|
|
30
|
-
declare id?: number;
|
|
31
|
-
|
|
32
|
-
@Column({
|
|
33
|
-
allowNull: true,
|
|
34
|
-
type: DataType.STRING(60)
|
|
35
|
-
})
|
|
36
|
-
declare uuid?: string;
|
|
37
|
-
|
|
38
|
-
@Column({
|
|
39
|
-
field: "key_name",
|
|
40
|
-
allowNull: true,
|
|
41
|
-
type: DataType.STRING(100)
|
|
42
|
-
})
|
|
43
|
-
declare keyName?: string;
|
|
44
|
-
|
|
45
|
-
@Column({
|
|
46
|
-
allowNull: true,
|
|
47
|
-
type: DataType.STRING(255)
|
|
48
|
-
})
|
|
49
|
-
declare name?: string;
|
|
50
|
-
|
|
51
|
-
@Column({
|
|
52
|
-
allowNull: true,
|
|
53
|
-
type: DataType.STRING
|
|
54
|
-
})
|
|
55
|
-
declare words?: string;
|
|
56
|
-
|
|
57
|
-
@Column({
|
|
58
|
-
allowNull: true,
|
|
59
|
-
type: DataType.INTEGER
|
|
60
|
-
})
|
|
61
|
-
declare status?: number;
|
|
62
|
-
|
|
63
|
-
@Column({
|
|
64
|
-
field: "ip_address",
|
|
65
|
-
allowNull: true,
|
|
66
|
-
type: DataType.STRING(15)
|
|
67
|
-
})
|
|
68
|
-
declare ipAddress?: string;
|
|
69
|
-
|
|
70
|
-
@Column({
|
|
71
|
-
field: "created_by",
|
|
72
|
-
allowNull: true,
|
|
73
|
-
type: DataType.STRING(60)
|
|
74
|
-
})
|
|
75
|
-
declare createdBy?: string;
|
|
76
|
-
|
|
77
|
-
@Column({
|
|
78
|
-
field: "created_date",
|
|
79
|
-
allowNull: true,
|
|
80
|
-
type: DataType.DATE
|
|
81
|
-
})
|
|
82
|
-
declare createdDate?: Date;
|
|
83
|
-
|
|
84
|
-
@Column({
|
|
85
|
-
field: "updated_by",
|
|
86
|
-
allowNull: true,
|
|
87
|
-
type: DataType.STRING(60)
|
|
88
|
-
})
|
|
89
|
-
declare updatedBy?: string;
|
|
90
|
-
|
|
91
|
-
@Column({
|
|
92
|
-
field: "updated_date",
|
|
93
|
-
allowNull: true,
|
|
94
|
-
type: DataType.DATE
|
|
95
|
-
})
|
|
96
|
-
declare updatedDate?: Date;
|
|
97
|
-
|
|
1
|
+
import {
|
|
2
|
+
Model, Table, Column, DataType, Index, Sequelize, ForeignKey
|
|
3
|
+
} from "sequelize-typescript";
|
|
4
|
+
|
|
5
|
+
export interface mdFormAdvance_2Attributes {
|
|
6
|
+
id?: number;
|
|
7
|
+
uuid?: string;
|
|
8
|
+
keyName?: string;
|
|
9
|
+
name?: string;
|
|
10
|
+
words?: string;
|
|
11
|
+
status?: number;
|
|
12
|
+
ipAddress?: string;
|
|
13
|
+
createdBy?: string;
|
|
14
|
+
createdDate?: Date;
|
|
15
|
+
updatedBy?: string;
|
|
16
|
+
updatedDate?: Date;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@Table({
|
|
20
|
+
tableName: "md_form_advance_2",
|
|
21
|
+
timestamps: false
|
|
22
|
+
})
|
|
23
|
+
export class mdFormAdvance_2 extends Model<mdFormAdvance_2Attributes, mdFormAdvance_2Attributes> implements mdFormAdvance_2Attributes {
|
|
24
|
+
|
|
25
|
+
@Column({
|
|
26
|
+
primaryKey: true,
|
|
27
|
+
autoIncrement: true,
|
|
28
|
+
type: DataType.INTEGER
|
|
29
|
+
})
|
|
30
|
+
declare id?: number;
|
|
31
|
+
|
|
32
|
+
@Column({
|
|
33
|
+
allowNull: true,
|
|
34
|
+
type: DataType.STRING(60)
|
|
35
|
+
})
|
|
36
|
+
declare uuid?: string;
|
|
37
|
+
|
|
38
|
+
@Column({
|
|
39
|
+
field: "key_name",
|
|
40
|
+
allowNull: true,
|
|
41
|
+
type: DataType.STRING(100)
|
|
42
|
+
})
|
|
43
|
+
declare keyName?: string;
|
|
44
|
+
|
|
45
|
+
@Column({
|
|
46
|
+
allowNull: true,
|
|
47
|
+
type: DataType.STRING(255)
|
|
48
|
+
})
|
|
49
|
+
declare name?: string;
|
|
50
|
+
|
|
51
|
+
@Column({
|
|
52
|
+
allowNull: true,
|
|
53
|
+
type: DataType.STRING
|
|
54
|
+
})
|
|
55
|
+
declare words?: string;
|
|
56
|
+
|
|
57
|
+
@Column({
|
|
58
|
+
allowNull: true,
|
|
59
|
+
type: DataType.INTEGER
|
|
60
|
+
})
|
|
61
|
+
declare status?: number;
|
|
62
|
+
|
|
63
|
+
@Column({
|
|
64
|
+
field: "ip_address",
|
|
65
|
+
allowNull: true,
|
|
66
|
+
type: DataType.STRING(15)
|
|
67
|
+
})
|
|
68
|
+
declare ipAddress?: string;
|
|
69
|
+
|
|
70
|
+
@Column({
|
|
71
|
+
field: "created_by",
|
|
72
|
+
allowNull: true,
|
|
73
|
+
type: DataType.STRING(60)
|
|
74
|
+
})
|
|
75
|
+
declare createdBy?: string;
|
|
76
|
+
|
|
77
|
+
@Column({
|
|
78
|
+
field: "created_date",
|
|
79
|
+
allowNull: true,
|
|
80
|
+
type: DataType.DATE
|
|
81
|
+
})
|
|
82
|
+
declare createdDate?: Date;
|
|
83
|
+
|
|
84
|
+
@Column({
|
|
85
|
+
field: "updated_by",
|
|
86
|
+
allowNull: true,
|
|
87
|
+
type: DataType.STRING(60)
|
|
88
|
+
})
|
|
89
|
+
declare updatedBy?: string;
|
|
90
|
+
|
|
91
|
+
@Column({
|
|
92
|
+
field: "updated_date",
|
|
93
|
+
allowNull: true,
|
|
94
|
+
type: DataType.DATE
|
|
95
|
+
})
|
|
96
|
+
declare updatedDate?: Date;
|
|
97
|
+
|
|
98
98
|
}
|
|
@@ -1,97 +1,97 @@
|
|
|
1
|
-
import {
|
|
2
|
-
Model, Table, Column, DataType, Index, Sequelize, ForeignKey
|
|
3
|
-
} from "sequelize-typescript";
|
|
4
|
-
|
|
5
|
-
export interface mdWordsAttributes {
|
|
6
|
-
id?: number;
|
|
7
|
-
uuid?: string;
|
|
8
|
-
keyName?: string;
|
|
9
|
-
name?: string;
|
|
10
|
-
value?: string;
|
|
11
|
-
status?: number;
|
|
12
|
-
total?: number;
|
|
13
|
-
createdBy?: string;
|
|
14
|
-
createdDate?: Date;
|
|
15
|
-
updatedBy?: string;
|
|
16
|
-
updatedDate?: Date;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@Table({
|
|
20
|
-
tableName: "md_words",
|
|
21
|
-
timestamps: false
|
|
22
|
-
})
|
|
23
|
-
export class mdWords extends Model<mdWordsAttributes, mdWordsAttributes> implements mdWordsAttributes {
|
|
24
|
-
|
|
25
|
-
@Column({
|
|
26
|
-
primaryKey: true,
|
|
27
|
-
autoIncrement: true,
|
|
28
|
-
type: DataType.INTEGER
|
|
29
|
-
})
|
|
30
|
-
declare id?: number;
|
|
31
|
-
|
|
32
|
-
@Column({
|
|
33
|
-
allowNull: true,
|
|
34
|
-
type: DataType.STRING(60)
|
|
35
|
-
})
|
|
36
|
-
declare uuid?: string;
|
|
37
|
-
|
|
38
|
-
@Column({
|
|
39
|
-
field: "key_name",
|
|
40
|
-
allowNull: true,
|
|
41
|
-
type: DataType.STRING(100)
|
|
42
|
-
})
|
|
43
|
-
declare keyName?: string;
|
|
44
|
-
|
|
45
|
-
@Column({
|
|
46
|
-
allowNull: true,
|
|
47
|
-
type: DataType.STRING(255)
|
|
48
|
-
})
|
|
49
|
-
declare name?: string;
|
|
50
|
-
|
|
51
|
-
@Column({
|
|
52
|
-
allowNull: true,
|
|
53
|
-
type: DataType.STRING
|
|
54
|
-
})
|
|
55
|
-
declare value?: string;
|
|
56
|
-
|
|
57
|
-
@Column({
|
|
58
|
-
allowNull: true,
|
|
59
|
-
type: DataType.INTEGER
|
|
60
|
-
})
|
|
61
|
-
declare status?: number;
|
|
62
|
-
|
|
63
|
-
@Column({
|
|
64
|
-
allowNull: true,
|
|
65
|
-
type: DataType.INTEGER
|
|
66
|
-
})
|
|
67
|
-
declare total?: number;
|
|
68
|
-
|
|
69
|
-
@Column({
|
|
70
|
-
field: "created_by",
|
|
71
|
-
allowNull: true,
|
|
72
|
-
type: DataType.STRING(60)
|
|
73
|
-
})
|
|
74
|
-
declare createdBy?: string;
|
|
75
|
-
|
|
76
|
-
@Column({
|
|
77
|
-
field: "created_date",
|
|
78
|
-
allowNull: true,
|
|
79
|
-
type: DataType.DATE
|
|
80
|
-
})
|
|
81
|
-
declare createdDate?: Date;
|
|
82
|
-
|
|
83
|
-
@Column({
|
|
84
|
-
field: "updated_by",
|
|
85
|
-
allowNull: true,
|
|
86
|
-
type: DataType.STRING(60)
|
|
87
|
-
})
|
|
88
|
-
declare updatedBy?: string;
|
|
89
|
-
|
|
90
|
-
@Column({
|
|
91
|
-
field: "updated_date",
|
|
92
|
-
allowNull: true,
|
|
93
|
-
type: DataType.DATE
|
|
94
|
-
})
|
|
95
|
-
declare updatedDate?: Date;
|
|
96
|
-
|
|
1
|
+
import {
|
|
2
|
+
Model, Table, Column, DataType, Index, Sequelize, ForeignKey
|
|
3
|
+
} from "sequelize-typescript";
|
|
4
|
+
|
|
5
|
+
export interface mdWordsAttributes {
|
|
6
|
+
id?: number;
|
|
7
|
+
uuid?: string;
|
|
8
|
+
keyName?: string;
|
|
9
|
+
name?: string;
|
|
10
|
+
value?: string;
|
|
11
|
+
status?: number;
|
|
12
|
+
total?: number;
|
|
13
|
+
createdBy?: string;
|
|
14
|
+
createdDate?: Date;
|
|
15
|
+
updatedBy?: string;
|
|
16
|
+
updatedDate?: Date;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@Table({
|
|
20
|
+
tableName: "md_words",
|
|
21
|
+
timestamps: false
|
|
22
|
+
})
|
|
23
|
+
export class mdWords extends Model<mdWordsAttributes, mdWordsAttributes> implements mdWordsAttributes {
|
|
24
|
+
|
|
25
|
+
@Column({
|
|
26
|
+
primaryKey: true,
|
|
27
|
+
autoIncrement: true,
|
|
28
|
+
type: DataType.INTEGER
|
|
29
|
+
})
|
|
30
|
+
declare id?: number;
|
|
31
|
+
|
|
32
|
+
@Column({
|
|
33
|
+
allowNull: true,
|
|
34
|
+
type: DataType.STRING(60)
|
|
35
|
+
})
|
|
36
|
+
declare uuid?: string;
|
|
37
|
+
|
|
38
|
+
@Column({
|
|
39
|
+
field: "key_name",
|
|
40
|
+
allowNull: true,
|
|
41
|
+
type: DataType.STRING(100)
|
|
42
|
+
})
|
|
43
|
+
declare keyName?: string;
|
|
44
|
+
|
|
45
|
+
@Column({
|
|
46
|
+
allowNull: true,
|
|
47
|
+
type: DataType.STRING(255)
|
|
48
|
+
})
|
|
49
|
+
declare name?: string;
|
|
50
|
+
|
|
51
|
+
@Column({
|
|
52
|
+
allowNull: true,
|
|
53
|
+
type: DataType.STRING
|
|
54
|
+
})
|
|
55
|
+
declare value?: string;
|
|
56
|
+
|
|
57
|
+
@Column({
|
|
58
|
+
allowNull: true,
|
|
59
|
+
type: DataType.INTEGER
|
|
60
|
+
})
|
|
61
|
+
declare status?: number;
|
|
62
|
+
|
|
63
|
+
@Column({
|
|
64
|
+
allowNull: true,
|
|
65
|
+
type: DataType.INTEGER
|
|
66
|
+
})
|
|
67
|
+
declare total?: number;
|
|
68
|
+
|
|
69
|
+
@Column({
|
|
70
|
+
field: "created_by",
|
|
71
|
+
allowNull: true,
|
|
72
|
+
type: DataType.STRING(60)
|
|
73
|
+
})
|
|
74
|
+
declare createdBy?: string;
|
|
75
|
+
|
|
76
|
+
@Column({
|
|
77
|
+
field: "created_date",
|
|
78
|
+
allowNull: true,
|
|
79
|
+
type: DataType.DATE
|
|
80
|
+
})
|
|
81
|
+
declare createdDate?: Date;
|
|
82
|
+
|
|
83
|
+
@Column({
|
|
84
|
+
field: "updated_by",
|
|
85
|
+
allowNull: true,
|
|
86
|
+
type: DataType.STRING(60)
|
|
87
|
+
})
|
|
88
|
+
declare updatedBy?: string;
|
|
89
|
+
|
|
90
|
+
@Column({
|
|
91
|
+
field: "updated_date",
|
|
92
|
+
allowNull: true,
|
|
93
|
+
type: DataType.DATE
|
|
94
|
+
})
|
|
95
|
+
declare updatedDate?: Date;
|
|
96
|
+
|
|
97
97
|
}
|
|
@@ -9,14 +9,15 @@ export { a as mdDownload, m as mdDownloadAttributes, c as mdDownloadGroup, b as
|
|
|
9
9
|
export { a as mdEbook, m as mdEbookAttributes, c as mdEbookGroup, b as mdEbookGroupAttributes } from '../../mdEbook-D18honC4.js';
|
|
10
10
|
export { a as mdFaq, m as mdFaqAttributes, c as mdFaqGroup, b as mdFaqGroupAttributes } from '../../mdFaq-1c4X_DI2.js';
|
|
11
11
|
export { mdFormAdvance_1, mdFormAdvance_1Attributes } from './mdFormAdvance_1.js';
|
|
12
|
+
export { mdFormAdvance_2, mdFormAdvance_2Attributes } from './mdFormAdvance_2.js';
|
|
12
13
|
export { a as mdLink, m as mdLinkAttributes, c as mdLinkGroup, b as mdLinkGroupAttributes } from '../../mdLink-Cr23xu_o.js';
|
|
13
14
|
export { a as mdNews, m as mdNewsAttributes, c as mdNewsGroup, b as mdNewsGroupAttributes } from '../../mdNews-CqZ9kQ8-.js';
|
|
14
15
|
export { mdPopup, mdPopupAttributes } from './mdPopup.js';
|
|
15
16
|
export { mdSetting, mdSettingAttributes } from './mdSetting.js';
|
|
17
|
+
export { mdWords, mdWordsAttributes } from './mdWords.js';
|
|
16
18
|
export { member, memberAttributes } from './member.js';
|
|
17
19
|
export { oauthAccessToken, oauthAccessTokenAttributes } from './oauthAccessToken.js';
|
|
18
20
|
export { oauthRefreshToken, oauthRefreshTokenAttributes } from './oauthRefreshToken.js';
|
|
19
|
-
export { setting, settingAttributes } from './setting.js';
|
|
20
21
|
export { settings, settingsAttributes } from './settings.js';
|
|
21
22
|
export { userCenterV, userCenterVAttributes } from './userCenterV.js';
|
|
22
23
|
export { userRoleV, userRoleVAttributes } from './userRoleV.js';
|