28 lines
845 B
Go
28 lines
845 B
Go
|
|
package dataengine
|
|||
|
|
|
|||
|
|
import (
|
|||
|
|
"gitea.com/red-future/common/beans"
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
// TencentAccountRelation 腾讯广告账户关系实体(来源:data-engine.tencent_account_relation)
|
|||
|
|
type TencentAccountRelation struct {
|
|||
|
|
beans.SQLBaseDO `orm:",inherit"`
|
|||
|
|
// 业务字段
|
|||
|
|
AccountID int64 `orm:"account_id" json:"accountId" description:"账户ID"`
|
|||
|
|
CorporationName string `orm:"corporation_name" json:"corporationName" description:"公司名称"`
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// TencentAccountRelationCol 账户关系表字段定义
|
|||
|
|
type TencentAccountRelationCol struct {
|
|||
|
|
beans.SQLBaseCol
|
|||
|
|
AccountID string
|
|||
|
|
CorporationName string
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// TencentAccountRelationCols 账户关系表字段常量
|
|||
|
|
var TencentAccountRelationCols = TencentAccountRelationCol{
|
|||
|
|
SQLBaseCol: beans.DefSQLBaseCol,
|
|||
|
|
AccountID: "account_id",
|
|||
|
|
CorporationName: "corporation_name",
|
|||
|
|
}
|