// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity import ( "github.com/gogf/gf/v2/os/gtime" ) // Feedbacks is the golang structure for table feedbacks. type Feedbacks struct { Id int64 `json:"id" orm:"id" description:"反馈唯一标识符"` // 反馈唯一标识符 UserId int64 `json:"userId" orm:"user_id" description:"提交者用户ID"` // 提交者用户ID Title string `json:"title" orm:"title" description:"反馈标题"` // 反馈标题 Content string `json:"content" orm:"content" description:"反馈内容"` // 反馈内容 FeedbackType int `json:"feedbackType" orm:"feedback_type" description:"反馈类型:1=BUG,2=建议,3=投诉,4=其他"` // 反馈类型:1=BUG,2=建议,3=投诉,4=其他 Status int `json:"status" orm:"status" description:"处理状态:0=待处理,1=处理中,2=已处理,3=已驳回"` // 处理状态:0=待处理,1=处理中,2=已处理,3=已驳回 Reply string `json:"reply" orm:"reply" description:"管理员回复内容"` // 管理员回复内容 CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"反馈提交时间"` // 反馈提交时间 UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:"反馈更新时间"` // 反馈更新时间 DeletedAt *gtime.Time `json:"deletedAt" orm:"deleted_at" description:"软删除时间戳"` // 软删除时间戳 }