chore: 修正几个okwithdata 的误用 (#1077)

This commit is contained in:
pnck
2022-05-20 14:55:28 +08:00
committed by GitHub
parent fc0958e511
commit 43d1aa17a3
5 changed files with 6 additions and 6 deletions

View File

@@ -22,7 +22,7 @@ func (s *EmailApi) EmailTest(c *gin.Context) {
global.GVA_LOG.Error("发送失败!", zap.Error(err))
response.FailWithMessage("发送失败", c)
} else {
response.OkWithData("发送成功", c)
response.OkWithMessage("发送成功", c)
}
}
@@ -40,6 +40,6 @@ func (s *EmailApi) SendEmail(c *gin.Context) {
global.GVA_LOG.Error("发送失败!", zap.Error(err))
response.FailWithMessage("发送失败", c)
} else {
response.OkWithData("发送成功", c)
response.OkWithMessage("发送成功", c)
}
}