22 lines
759 B
Go
22 lines
759 B
Go
// =================================================================================
|
||
// 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 // 更新时间
|
||
}
|