We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c6c22 commit 2d2e46cCopy full SHA for 2d2e46c
example/zz_gen.column.go
@@ -0,0 +1,25 @@
1
+package example
2
+
3
+var UserColumn = struct {
4
+ ID string
5
+ Username string
6
+ Password string
7
+ Address string
8
+ Age string
9
+ Phone string
10
+ Score string
11
+ Dept string
12
+ CreatedAt string
13
+ UpdatedAt string
14
+}{
15
+ ID: "id",
16
+ Username: "username",
17
+ Password: "password",
18
+ Address: "address",
19
+ Age: "age",
20
+ Phone: "phone",
21
+ Score: "score",
22
+ Dept: "dept",
23
+ CreatedAt: "created_at",
24
+ UpdatedAt: "updated_at",
25
+}
0 commit comments