初始化项目

This commit is contained in:
2025-12-06 10:38:48 +08:00
parent c9fcfc761e
commit 88a2753211
20 changed files with 2552 additions and 74 deletions

9
model/types/tenant.go Normal file
View File

@@ -0,0 +1,9 @@
package types
// Tenant 租户信息类型
type Tenant struct {
Id int64 `json:"id"` // 租户ID
Name string `json:"name"` // 租户名称
Level string `json:"level"` // 租户级别: basic, standard, premium
Status string `json:"status"` // 状态: active, inactive
}