|
@@ -34,18 +34,19 @@ public class FeedbackController extends BaseController{
|
|
return ResultData.ok();
|
|
return ResultData.ok();
|
|
}
|
|
}
|
|
|
|
|
|
- @PostMapping("/add")
|
|
|
|
- public ResultData add(@RequestBody Feedback param){
|
|
|
|
- feedbackService.save(param);
|
|
|
|
- return ResultData.ok();
|
|
|
|
- }
|
|
|
|
|
|
|
|
@GetMapping("/scoreAug")
|
|
@GetMapping("/scoreAug")
|
|
public ResultData scoreAug(){
|
|
public ResultData scoreAug(){
|
|
return ResultData.ok( feedbackService.scoreAug());
|
|
return ResultData.ok( feedbackService.scoreAug());
|
|
}
|
|
}
|
|
|
|
|
|
- @GetMapping("/getDefaultAddress")
|
|
|
|
|
|
+ @PostMapping("/h5/add")
|
|
|
|
+ public ResultData add(@RequestBody Feedback param){
|
|
|
|
+ feedbackService.save(param);
|
|
|
|
+ return ResultData.ok();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @GetMapping("/h5/getDefaultAddress")
|
|
public ResultData getDefaultAddress(){
|
|
public ResultData getDefaultAddress(){
|
|
return ResultData.ok(feedbackService.getDefaultAddress(request));
|
|
return ResultData.ok(feedbackService.getDefaultAddress(request));
|
|
}
|
|
}
|