12345678910111213141516171819202122 |
- // =================================================================================
- // 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"
- )
- // AdminRequest is the golang structure of table admin_request for DAO operations like Where/Data.
- type AdminRequest struct {
- g.Meta `orm:"table:admin_request, do:true"`
- Id interface{} //
- Type interface{} // 请求类型
- Name interface{} // 名称
- Action interface{} // action
- Call interface{} // 类型配置
- CreateTime *gtime.Time // 创建时间
- UpdateTime *gtime.Time // 更新时间
- }
|