🎨 remove xorm & add gorm gen

This commit is contained in:
landaiqing
2024-11-21 13:03:47 +08:00
parent 9b5e454eca
commit f32ac241a6
84 changed files with 8865 additions and 3476 deletions

View File

@@ -1,10 +1,10 @@
package constant
const (
COMMENT int = iota
COMMENT int64 = iota
REPLY
)
const (
CommentTopicType = iota
CommentTopicType int64 = iota
)

View File

@@ -1,6 +1,6 @@
package constant
const (
NotDeleted int8 = iota
Deleted int8 = 1
NotDeleted int64 = iota
Deleted int64 = 1
)

View File

@@ -1,6 +1,6 @@
package constant
const (
Female int8 = iota
Female int64 = iota
Male
)

View File

@@ -0,0 +1,5 @@
package constant
const (
COMMENT_IMAGES = "comment_images"
)