feat: 更新CC码监管方案业务版文档,新增摘要、UGC专项、直播专项、存量处置、误判申诉、水印嵌入、CC码生命周期、组织保障等章节;同步macode到cccode重命名及其他代码变更

This commit is contained in:
freedakgmail
2026-07-20 22:25:40 +08:00
parent 9f1e2d0a21
commit eb4a82a877
76 changed files with 2600 additions and 2122 deletions
+3 -3
View File
@@ -15,7 +15,7 @@ const (
// PlaybackEvent 运营商以 MA 码为维度回传的播放/消费事件(需求9-AC1)。
type PlaybackEvent struct {
MACode string `json:"ma_code"`
CCCode string `json:"ma_code"`
Episode int `json:"episode"` // 0=整剧/单体
PlatformID string `json:"platform_id"` // 运营商节点
UserHash string `json:"user_hash"` // 用户标识哈希(隐私保护)
@@ -27,7 +27,7 @@ type PlaybackEvent struct {
// PlaybackSummary 按 MA 码聚合的可信播放数据(需求9-AC2、需求21-AC1)。
type PlaybackSummary struct {
MACode string `json:"ma_code"`
CCCode string `json:"ma_code"`
TotalPlays int64 `json:"total_plays"`
TotalComplete int64 `json:"total_complete"`
TotalRevenue int64 `json:"total_revenue_cent"`
@@ -55,7 +55,7 @@ func DefaultShareConfig() RevenueShareConfig {
// Settlement 基于可信播放数据的分账结算结果(需求21-AC3)。
type Settlement struct {
MACode string `json:"ma_code"`
CCCode string `json:"ma_code"`
Period string `json:"period"`
TotalRevenue int64 `json:"total_revenue_cent"`
CPShare int64 `json:"cp_share_cent"`