yidun送检新增账户下拉和导出优化
This commit is contained in:
27
model/entity/dataengine/tencent_account_relation.go
Normal file
27
model/entity/dataengine/tencent_account_relation.go
Normal file
@@ -0,0 +1,27 @@
|
||||
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",
|
||||
}
|
||||
Reference in New Issue
Block a user