|
|
|
@@ -83,7 +83,12 @@ public class WxActivityController extends BaseController { |
|
|
|
@SystemControllerLog(description = "活动-更新状态") |
|
|
|
public ResultData updateStatus(@RequestBody WxActivity wxActivity) { |
|
|
|
logger.debug("[" + getIpAddr() + "] WxActivityController::updateStatus"); |
|
|
|
return wxActivityService.updateStatus(wxActivity); |
|
|
|
try { |
|
|
|
return wxActivityService.updateStatus(wxActivity); |
|
|
|
} catch (MallinkException e) { |
|
|
|
logger.error(e.getMessage()); |
|
|
|
return new ResultData(e.getErrorCode(), e.getMessage()); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("根据id查询接口") |
|
|
|
|