package apollostruct

// 账户初始化数据
type AuditTaskCollectionReflectCfg struct {
	Map map[string][]*CollectionInfo `json:"map"`
}

type CollectionInfo struct {
	Database  string `json:"database"`   // 数据库
	TableName string `json:"table_name"` // 表名
}