初始化项目框架,完成部分接口开发
This commit is contained in:
21
internal/model/do/feedbacks.go
Normal file
21
internal/model/do/feedbacks.go
Normal file
@ -0,0 +1,21 @@
|
||||
// =================================================================================
|
||||
// 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 // 更新时间
|
||||
}
|
||||
Reference in New Issue
Block a user