28 lines
1.1 KiB
Go
28 lines
1.1 KiB
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"
|
|
)
|
|
|
|
// ModuleTenant is the golang structure of table ModuleTenant for DAO operations like Where/Data.
|
|
type ModuleTenant struct {
|
|
g.Meta `orm:"table:module_tenant, do:true"`
|
|
Id interface{} //
|
|
CreateBy interface{} // 创建者
|
|
UpdateBy interface{} // 更新者
|
|
CreatedAt *gtime.Time // 创建时间
|
|
UpdatedAt *gtime.Time // 更新时间
|
|
ModuleKey interface{} //模块Key
|
|
TenantId interface{} //租户ID
|
|
ExpireAt *gtime.Time //到期时间
|
|
AssetId interface{} //资产ID
|
|
AssetSkuId interface{} //资产SKU ID
|
|
TenantModuleType interface{} //租户模块类型
|
|
CertificationStatus interface{} //状态
|
|
}
|