Commit 1844b95b by guojuxing

删除短信签名接口修复

parent 8fd19117
...@@ -102,7 +102,7 @@ public class EnterpriseSmsController { ...@@ -102,7 +102,7 @@ public class EnterpriseSmsController {
@RequestMapping("/delete-sms") @RequestMapping("/delete-sms")
public RestResponse deleteSms(Long signId, Integer enterpriseId) { public RestResponse deleteSms(Long signId, Integer enterpriseId) {
ServiceResponse<Void> smsResult = smsOuterApiService.delEnterpriseSmsSign(UserDetailUtils.getUserDetail().getEnterpriseId(), signId); ServiceResponse<Void> smsResult = smsOuterApiService.delEnterpriseSmsSign(enterpriseId, signId);
if (smsResult.isSuccess()) { if (smsResult.isSuccess()) {
ServiceResponse<EnterpriseDTO> enterpriseResult = enterpriseApiService.getEnterpriseById(enterpriseId); ServiceResponse<EnterpriseDTO> enterpriseResult = enterpriseApiService.getEnterpriseById(enterpriseId);
if (enterpriseResult.isSuccess()) { if (enterpriseResult.isSuccess()) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment