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.
 
 
 
 

18 lines
1.3 KiB

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
// Comment is the golang structure for table comment.
type Comment struct {
Id uint `json:"id" orm:"id" description:""` //
WishId int `json:"wishId" orm:"wish_id" description:"心愿ID"` // 心愿ID
Jwcode int `json:"jwcode" orm:"jwcode" description:"评论人code"` // 评论人code
Content string `json:"content" orm:"content" description:"评论内容"` // 评论内容
Image string `json:"image" orm:"image" description:"图片,多张图片用json格式保存"` // 图片,多张图片用json格式保存
ReplyNum int `json:"replyNum" orm:"reply_num" description:"回复数"` // 回复数
Pid int `json:"pid" orm:"pid" description:"父级评论ID"` // 父级评论ID
Delete int `json:"delete" orm:"delete" description:"0正常1删除"` // 0正常1删除
CreatedAt int `json:"createdAt" orm:"created_at" description:"评论时间"` // 评论时间
}