26 lines
1.3 KiB
Go
26 lines
1.3 KiB
Go
// =================================================================================
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-03-02 16:48:23
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
"github.com/tiger1103/gfast/v3/internal/app/system/consts"
|
|
)
|
|
|
|
// Tenant is the golang structure for table tenant.
|
|
type Tenant struct {
|
|
Id uint64 `json:"id" description:""`
|
|
CreateBy uint64 `json:"createBy" description:"创建者"`
|
|
UpdateBy uint64 `json:"updateBy" description:"更新者"`
|
|
CreatedAt *gtime.Time `json:"createdAt" description:"创建时间"`
|
|
UpdatedAt *gtime.Time `json:"updatedAt" description:"更新时间"`
|
|
TenantName string `json:"tenantName" description:"租户名称"`
|
|
TenantType consts.TenantType `json:"tenantType" description:"租户类型"`
|
|
CityCode string `json:"cityCode" description:"城市编码"`
|
|
BusinessLicense string `json:"businessLicense" description:"营业执照"`
|
|
TenantSource uint64 `json:"tenantSource" description:"租户来源"`
|
|
AdminBy uint64 `json:"adminBy" description:"管理者"`
|
|
}
|