// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package do import ( "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/os/gtime" ) // SystemSocialClient is the golang structure of table system_social_client for DAO operations like Where/Data. type SystemSocialClient struct { g.Meta `orm:"table:system_social_client, do:true"` Id interface{} // 编号 Name interface{} // 应用名 SocialType interface{} // 社交平台的类型 UserType interface{} // 用户类型 ClientId interface{} // 客户端编号 ClientSecret interface{} // 客户端密钥 AgentId interface{} // 代理编号 Status interface{} // 状态 Creator interface{} // 创建者 CreateTime *gtime.Time // 创建时间 Updater interface{} // 更新者 UpdateTime *gtime.Time // 更新时间 Deleted interface{} // 是否删除 TenantId interface{} // 租户编号 }