Files
qitongxue-api/internal/model/entity/entity_feedbacks.go
2026-09-17 14:42:44 +08:00

14 lines
346 B
Go

package entity
import "github.com/gogf/gf/v2/os/gtime"
// Feedbacks 用户反馈
type Feedbacks struct {
Id int64 `json:"id"`
UserId int64 `json:"user_id"`
Content string `json:"content"`
Contact string `json:"contact"`
Status int `json:"status"`
CreatedAt *gtime.Time `json:"created_at"`
}