yidun送检新增账户下拉和导出优化

This commit is contained in:
2026-05-15 14:01:15 +08:00
parent 307b01c0e3
commit 3dbcf7a8e3
7 changed files with 388 additions and 30 deletions

View 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",
}