feat: enhance tenant management with status description and improved UI components

This commit is contained in:
2025-12-16 23:25:46 +08:00
parent 2a12e1c3a9
commit e8b2699104
11 changed files with 320 additions and 98 deletions

View File

@@ -18,8 +18,9 @@ type TenantFilter struct {
type TenantItem struct {
*models.Tenant
UserCount int64
UserBalance int64
UserCount int64 `json:"user_count"`
UserBalance int64 `json:"user_balance"`
StatusDescription string `json:"status_description"`
}
type TenantExpireUpdateForm struct {