You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
813 B
23 lines
813 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
// Comment is the golang structure of table comment for DAO operations like Where/Data.
|
|
type Comment struct {
|
|
g.Meta `orm:"table:comment, do:true"`
|
|
Id interface{} //
|
|
WishId interface{} // 心愿ID
|
|
Jwcode interface{} // 评论人code
|
|
Content interface{} // 评论内容
|
|
Image interface{} // 图片,多张图片用json格式保存
|
|
ReplyNum interface{} // 回复数
|
|
Pid interface{} // 父级评论ID
|
|
Delete interface{} // 0正常1删除
|
|
CreatedAt interface{} // 评论时间
|
|
}
|