This commit is contained in:
hu xiaotong
2025-06-20 17:17:02 +08:00
commit 85e3a6540b
310 changed files with 12475 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
import (
"github.com/gogf/gf/v2/os/gtime"
)
// SystemTenant is the golang structure for table system_tenant.
type SystemTenant struct {
Id int64 `json:"id" orm:"id" description:"租户编号"` // 租户编号
Name string `json:"name" orm:"name" description:"租户名"` // 租户名
ContactUserId int64 `json:"contactUserId" orm:"contact_user_id" description:"联系人的用户编号"` // 联系人的用户编号
ContactName string `json:"contactName" orm:"contact_name" description:"联系人"` // 联系人
ContactMobile string `json:"contactMobile" orm:"contact_mobile" description:"联系手机"` // 联系手机
Status int `json:"status" orm:"status" description:"租户状态0正常 1停用"` // 租户状态0正常 1停用
Website string `json:"website" orm:"website" description:"绑定域名"` // 绑定域名
PackageId int64 `json:"packageId" orm:"package_id" description:"租户套餐编号"` // 租户套餐编号
ExpireTime *gtime.Time `json:"expireTime" orm:"expire_time" description:"过期时间"` // 过期时间
AccountCount int `json:"accountCount" orm:"account_count" description:"账号数量"` // 账号数量
Creator string `json:"creator" orm:"creator" description:"创建者"` // 创建者
CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:"创建时间"` // 创建时间
Updater string `json:"updater" orm:"updater" description:"更新者"` // 更新者
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:"更新时间"` // 更新时间
Deleted bool `json:"deleted" orm:"deleted" description:"是否删除"` // 是否删除
}