Commit 9ae405e5d2b29591acee12d210e7c0218787a719

Authored by 王家文
1 parent a28e726b
Exists in master and in 1 other branch dev-wjw

fix🐛:配置的几个数据类型更改

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
configs/confcardholder/decode.go
@@ -142,7 +142,7 @@ func (c *ActivityConfig) GenerateConfigClient() { @@ -142,7 +142,7 @@ func (c *ActivityConfig) GenerateConfigClient() {
142 142
143 // CombineIdSequenceIdCohort 组合ID k=ID_用户序列_用户分组 143 // CombineIdSequenceIdCohort 组合ID k=ID_用户序列_用户分组
144 func CombineIdSequenceIdCohort(id, sequenceId, cohort int) string { 144 func CombineIdSequenceIdCohort(id, sequenceId, cohort int) string {
145 - return fmt.Sprintf("%s_%s_%s", id, sequenceId, cohort) 145 + return fmt.Sprintf("%d_%d_%d", id, sequenceId, cohort)
146 } 146 }
147 147
148 // FindNormalCardStarConfig 查找配置 非保底卡星级ID 148 // FindNormalCardStarConfig 查找配置 非保底卡星级ID