feat: done

This commit is contained in:
2025-12-18 00:21:49 +08:00
parent 7261c0fcc3
commit bfce71b56d
15 changed files with 331 additions and 17 deletions

View File

@@ -0,0 +1,9 @@
package dto
import "quyun/v2/database/models"
type MeResponse struct {
Tenant *models.Tenant `json:"tenant,omitempty"`
User *models.User `json:"user,omitempty"`
TenantUser *models.TenantUser `json:"tenant_user,omitempty"`
}