@admc-go-th/admc-library 1.0.58 → 1.0.59

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.
@@ -16,6 +16,7 @@ export * from "./mdEbook";
16
16
  export * from "./mdEbookGroup";
17
17
  export * from "./mdFaq";
18
18
  export * from "./mdFaqGroup";
19
+ export * from "./mdFormAdvance_1";
19
20
  export * from "./mdLink";
20
21
  export * from "./mdLinkGroup";
21
22
  export * from "./mdNews";
@@ -0,0 +1,90 @@
1
+ import {
2
+ Model, Table, Column, DataType, Index, Sequelize, ForeignKey
3
+ } from "sequelize-typescript";
4
+
5
+ export interface mdFormAdvance_1Attributes {
6
+ id?: number;
7
+ uuid?: string;
8
+ keyName?: string;
9
+ title?: string;
10
+ detail?: string;
11
+ status?: number;
12
+ createdBy?: string;
13
+ createdDate?: Date;
14
+ updatedBy?: string;
15
+ updatedDate?: Date;
16
+ }
17
+
18
+ @Table({
19
+ tableName: "md_form_advance_1",
20
+ timestamps: false
21
+ })
22
+ export class mdFormAdvance_1 extends Model<mdFormAdvance_1Attributes, mdFormAdvance_1Attributes> implements mdFormAdvance_1Attributes {
23
+
24
+ @Column({
25
+ primaryKey: true,
26
+ autoIncrement: true,
27
+ type: DataType.INTEGER
28
+ })
29
+ declare id?: number;
30
+
31
+ @Column({
32
+ allowNull: true,
33
+ type: DataType.STRING(60)
34
+ })
35
+ declare uuid?: string;
36
+
37
+ @Column({
38
+ field: "key_name",
39
+ allowNull: true,
40
+ type: DataType.STRING(100)
41
+ })
42
+ declare keyName?: string;
43
+
44
+ @Column({
45
+ allowNull: true,
46
+ type: DataType.STRING(255)
47
+ })
48
+ declare title?: string;
49
+
50
+ @Column({
51
+ allowNull: true,
52
+ type: DataType.STRING
53
+ })
54
+ declare detail?: string;
55
+
56
+ @Column({
57
+ allowNull: true,
58
+ type: DataType.INTEGER
59
+ })
60
+ declare status?: number;
61
+
62
+ @Column({
63
+ field: "created_by",
64
+ allowNull: true,
65
+ type: DataType.STRING(60)
66
+ })
67
+ declare createdBy?: string;
68
+
69
+ @Column({
70
+ field: "created_date",
71
+ allowNull: true,
72
+ type: DataType.DATE
73
+ })
74
+ declare createdDate?: Date;
75
+
76
+ @Column({
77
+ field: "updated_by",
78
+ allowNull: true,
79
+ type: DataType.STRING(60)
80
+ })
81
+ declare updatedBy?: string;
82
+
83
+ @Column({
84
+ field: "updated_date",
85
+ allowNull: true,
86
+ type: DataType.DATE
87
+ })
88
+ declare updatedDate?: Date;
89
+
90
+ }
@@ -8,6 +8,7 @@ export { mdDocumentPdf, mdDocumentPdfAttributes } from './mdDocumentPdf.js';
8
8
  export { mdDownload, mdDownloadAttributes } from './mdDownload.js';
9
9
  export { a as mdEbook, m as mdEbookAttributes, c as mdEbookGroup, b as mdEbookGroupAttributes } from '../../mdEbook-C-qae2zR.js';
10
10
  export { a as mdFaq, m as mdFaqAttributes, c as mdFaqGroup, b as mdFaqGroupAttributes } from '../../mdFaq-1c4X_DI2.js';
11
+ export { mdFormAdvance_1, mdFormAdvance_1Attributes } from './mdFormAdvance_1.js';
11
12
  export { a as mdLink, m as mdLinkAttributes, c as mdLinkGroup, b as mdLinkGroupAttributes } from '../../mdLink-Cr23xu_o.js';
12
13
  export { a as mdNews, m as mdNewsAttributes, c as mdNewsGroup, b as mdNewsGroupAttributes } from '../../mdNews-CqZ9kQ8-.js';
13
14
  export { mdPopup, mdPopupAttributes } from './mdPopup.js';