初始化项目

This commit is contained in:
2025-12-10 15:41:52 +08:00
parent 339dd97f66
commit 232009bbc2
25 changed files with 419 additions and 467 deletions

View File

@@ -6,13 +6,12 @@ import (
// Application 应用实体
type Application struct {
Id int64 `json:"id"` // 主键ID
CreatedAt time.Time `json:"createdAt"` // 创建时间
UpdatedAt time.Time `json:"updatedAt"` // 更新时间
Creator string `json:"creator"` // 创建者
Updater string `json:"updater"` // 更新者
TenantId int64 `json:"tenantId"` // 租户ID
IsDeleted bool `json:"isDeleted"` // 是否删除
Id string `json:"_id,omitempty" bson:"_id,omitempty"` // 主键ID
CreatedAt time.Time `json:"createdAt"` // 创建时间
UpdatedAt time.Time `json:"updatedAt"` // 更新时间
Creator string `json:"creator"` // 创建者
Updater string `json:"updater"` // 更新者
IsDeleted bool `json:"isDeleted"` // 是否删除
// 应用信息
Name string `json:"name"` // 应用名称