Commit 8206d8f1 authored by macro's avatar macro
Browse files

Update SmsFlashPromotionController.java

parent 3ad151c1
...@@ -34,7 +34,7 @@ public class SmsFlashPromotionController { ...@@ -34,7 +34,7 @@ public class SmsFlashPromotionController {
return CommonResult.failed(); return CommonResult.failed();
} }
@ApiOperation("编辑活动信息") @ApiOperation("编辑活动")
@RequestMapping(value = "/update/{id}", method = RequestMethod.POST) @RequestMapping(value = "/update/{id}", method = RequestMethod.POST)
@ResponseBody @ResponseBody
public Object update(@PathVariable Long id, @RequestBody SmsFlashPromotion flashPromotion) { public Object update(@PathVariable Long id, @RequestBody SmsFlashPromotion flashPromotion) {
...@@ -45,7 +45,7 @@ public class SmsFlashPromotionController { ...@@ -45,7 +45,7 @@ public class SmsFlashPromotionController {
return CommonResult.failed(); return CommonResult.failed();
} }
@ApiOperation("删除活动信息") @ApiOperation("删除活动")
@RequestMapping(value = "/delete/{id}", method = RequestMethod.POST) @RequestMapping(value = "/delete/{id}", method = RequestMethod.POST)
@ResponseBody @ResponseBody
public Object delete(@PathVariable Long id) { public Object delete(@PathVariable Long id) {
......
Supports Markdown
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