27 lines
974 B
Go
27 lines
974 B
Go
// =================================================================================
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT. Created at 2022-03-02 16:48:23
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// Tenant is the golang structure of table tenant for DAO operations like Where/Data.
|
|
type Tenant struct {
|
|
g.Meta `orm:"table:tenant, do:true"`
|
|
Id interface{} //
|
|
CreateBy interface{} // 创建者
|
|
UpdateBy interface{} // 更新者
|
|
CreatedAt *gtime.Time // 创建时间
|
|
UpdatedAt *gtime.Time // 更新时间
|
|
TenantName interface{} // 租户名称
|
|
TenantType interface{} // 租户类型
|
|
CityCode interface{} // 城市编码
|
|
BusinessLicense interface{} // 营业执照
|
|
TenantSource interface{} // 租户来源
|
|
AdminBy interface{} // 管理者
|
|
}
|