Files
novel_server/internal/model/do/feedbacks.go

22 lines
759 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// Feedbacks is the golang structure of table feedbacks for DAO operations like Where/Data.
type Feedbacks struct {
g.Meta `orm:"table:feedbacks, do:true"`
Id interface{} // 反馈ID
UserId interface{} // 用户ID
Content interface{} // 反馈内容
Status interface{} // 处理状态1=未处理2=处理中3=已处理
CreatedAt *gtime.Time // 反馈时间
UpdatedAt *gtime.Time // 更新时间
}