admin_request.go 761 B

12345678910111213141516171819202122
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. "github.com/gogf/gf/v2/os/gtime"
  8. )
  9. // AdminRequest is the golang structure of table admin_request for DAO operations like Where/Data.
  10. type AdminRequest struct {
  11. g.Meta `orm:"table:admin_request, do:true"`
  12. Id interface{} //
  13. Type interface{} // 请求类型
  14. Name interface{} // 名称
  15. Action interface{} // action
  16. Call interface{} // 类型配置
  17. CreateTime *gtime.Time // 创建时间
  18. UpdateTime *gtime.Time // 更新时间
  19. }