调整新增奖励

This commit is contained in:
chy
2025-06-30 14:29:36 +08:00
parent 9abd6940fd
commit 09e9ebe8c3
5 changed files with 43 additions and 17 deletions

View File

@ -55,3 +55,8 @@ func (c *snowClient) generateCodeWithPrefix(prefix string) (string, error) {
func (c *snowClient) GenerateSerialNumber() (string, error) {
return c.generateCodeWithPrefix("SN")
}
// GenerateCouponTemplateId 生成券模板 ID
func (c *snowClient) GenerateCouponTemplateId() (string, error) {
return c.generateCodeWithPrefix("Q")
}