|
|
@@ -47,8 +47,8 @@ func SmsSend(engine *xorm.Engine, args map[string]interface{}) error { |
|
|
|
if err != nil { |
|
|
|
return err |
|
|
|
} |
|
|
|
platformCount := gjson.Get(send, "data.smsNum").String() |
|
|
|
if zhios_third_party_utils.StrToInt(platformCount) < count*int(contentLen) { |
|
|
|
platformCount := gjson.Get(send, "data.smsNum").Int() |
|
|
|
if platformCount < count*int(contentLen) { |
|
|
|
return errors.New("平台短信不足") |
|
|
|
} |
|
|
|
} |
|
|
|