Commit 0641b7ed by “Kongxiangkun”

增加积分商城相关代码

parent 842aac7e
......@@ -13,8 +13,8 @@ public interface PointRedisFeignClients {
@PostMapping("/point/redis/add")
String addPointRedis(@RequestBody PointParamVO vo);
@GetMapping("/point/add")
public void pointAdd(
@PostMapping("/point/add")
void pointAdd(
@RequestParam(name = "type",required = false)String type,
@RequestParam(name = "accountId",required = false)Long accountId,
@RequestParam(name = "sourceId",required = false)String sourceId);
......
......@@ -42,7 +42,7 @@ public class PointRedisController {
}
@GetMapping("/point/add")
@PostMapping("/point/add")
public void pointAdd(
@RequestParam(name = "type",required = false)String type,
@RequestParam(name = "accountId",required = false)Long accountId,
......
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