1234567891011121314151617181920 |
- // =================================================================================
- // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
- // =================================================================================
- package entity
- import (
- "github.com/gogf/gf/v2/os/gtime"
- )
- // AdminRequest is the golang structure for table admin_request.
- type AdminRequest struct {
- Id uint `json:"id" orm:"id" description:""` //
- Type string `json:"type" orm:"type" description:"请求类型"` // 请求类型
- Name string `json:"name" orm:"name" description:"名称"` // 名称
- Action string `json:"action" orm:"action" description:"action"` // action
- Call string `json:"call" orm:"call" description:"类型配置"` // 类型配置
- CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:"创建时间"` // 创建时间
- UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:"更新时间"` // 更新时间
- }
|