Browse Source

增加腾讯云短信发送参数

master v0.1.3
guzeng 2 years ago
parent
commit
a88852475c
1 changed files with 6 additions and 6 deletions
  1. +6
    -6
      variable.go

+ 6
- 6
variable.go View File

@ -12,10 +12,10 @@ type WoParam struct {
} }
type TencentParam struct { type TencentParam struct {
SecretId string `json:"secretId"`
SecretKey string `json:"secretKey"`
Signname string `json:"signname"`
Mobiles []string `json:"mobiles"`
TemplateId string `json:"templateId"`
Params []string `json:"params"`
SecretId string `json:"secretId"`
SecretKey string `json:"secretKey"`
Signname string `json:"signname"`
Mobiles string `json:"mobiles"`
TemplateId string `json:"templateId"`
Params string `json:"params"`
} }

Loading…
Cancel
Save