admin_request.go 1.1 KB

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