service.xpcool.com/internal/model/entity/auth_refresh_session.go
夏犀麟 4aca0c7f6f
Some checks failed
Build and Deploy (service.xpcool.com) / build-and-deploy (push) Failing after 5m7s
feat(house): 实现看房模块后端功能
- 新增 9 张房屋相关数据表(社区/楼宇/房源/价格快照/交易/设施/社区设施/学区/偏好)
- 添加菜单权限种子数据并绑定超级管理员角色
- 生成 DAO 层代码和实体对象
- 实现房屋模块 API 接口(社区/房源/看板)和控制器服务层
- 支持多平台软关联匹配、笋盘标记和低可信度标记功能
- 更新超级管理员账号为 xxcool/xxCool@2026
- 调整 RBAC 菜单结构,移除管理员管理功能,新增日志管理菜单
- 修复 RBAC 安全漏洞,确保禁用角色权限失效
- 重构认证模块,将登录相关接口迁移到统一包结构下
- 移除废弃的管理模块和工具类接口定义
- 为通用工具包添加中文注释和文档说明
2026-08-26 23:42:38 +08:00

24 lines
1.3 KiB
Go

// =================================================================================
// 本文件由 GoFrame CLI 工具生成并维护,请勿编辑。
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// AuthRefreshSession 是表 auth_refresh_session 的 Go 结构体。
type AuthRefreshSession struct {
Id uint64 `json:"id" orm:"id" description:""` //
SubjectId uint64 `json:"subjectId" orm:"subject_id" description:"????????? ID"` // ????????? ID
Scope string `json:"scope" orm:"scope" description:"user/admin"` // user/admin
Terminal string `json:"terminal" orm:"terminal" description:"mini/h5/app"` // mini/h5/app
Jti string `json:"jti" orm:"jti" description:"JWT ??????"` // JWT ??????
ExpiredAt *gtime.Time `json:"expiredAt" orm:"expired_at" description:""` //
RevokedAt *gtime.Time `json:"revokedAt" orm:"revoked_at" 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:""` //
}