14 lines
346 B
Go
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"`
|
|
}
|