|
|
// =================================================================================
// 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{} // 评论时间
}
|