sms.go 303 B

1234567891011121314
  1. package plugins
  2. type ICommonSmsWyyx interface {
  3. SendSMSTemplate(params IWyyxReq) (string, error)
  4. }
  5. // 网易云信
  6. var CommonSmsWyyx ICommonSmsWyyx
  7. // 入参
  8. type IWyyxReq struct {
  9. Mobiles []string `v:"required#电话号码不能为空"`
  10. Params []string `v:"required#短信参数不能为空"`
  11. }