// ================================================================================= // 本文件由 GoFrame CLI 工具生成并维护,请勿编辑。 // ================================================================================= package entity import ( "github.com/gogf/gf/v2/os/gtime" ) // AdminUserRole 是表 admin_user_role 的 Go 结构体。 type AdminUserRole struct { Id uint64 `json:"id" orm:"id" description:""` // AdminUserId uint64 `json:"adminUserId" orm:"admin_user_id" description:""` // RoleId uint64 `json:"roleId" orm:"role_id" description:""` // CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:""` // UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:""` // DeletedAt *gtime.Time `json:"deletedAt" orm:"deleted_at" description:""` // }