|
|
@@ -66,6 +66,14 @@ public class WxActivityController extends BaseController { |
|
|
return wxActivityService.saveOrUpdate(wxActivity); |
|
|
return wxActivityService.saveOrUpdate(wxActivity); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("根据id更新接口") |
|
|
|
|
|
@PostMapping("updateStatus") |
|
|
|
|
|
@SystemControllerLog(description = "活动-更新状态") |
|
|
|
|
|
public ResultData updateStatus(@RequestBody WxActivity wxActivity) { |
|
|
|
|
|
logger.debug("[" + getIpAddr() + "] WxActivityController::updateStatus"); |
|
|
|
|
|
return wxActivityService.updateStatus(wxActivity); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ApiOperation("根据id查询接口") |
|
|
@ApiOperation("根据id查询接口") |
|
|
@GetMapping("/findById") |
|
|
@GetMapping("/findById") |
|
|
@ApiImplicitParam(name = "id", value = "id", dataType = "Long", paramType = "query", required = true) |
|
|
@ApiImplicitParam(name = "id", value = "id", dataType = "Long", paramType = "query", required = true) |
|
|
|