Skip to content

Commit 2d2e46c

Browse files
committed
chore: add zz_gen.column.go
1 parent 99c6c22 commit 2d2e46c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

example/zz_gen.column.go

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)