|
@@ -83,9 +83,9 @@ public class OpenApiController {
|
|
|
@AnonymousPostMapping(value = "/appFoodPj")
|
|
|
@Log("App菜品评价")
|
|
|
@ApiOperation("App菜品评价")
|
|
|
- public BaseResponse<Object> appFoodPj(@RequestBody QueryPageParams<String> userCode) {
|
|
|
- SecurityUtils.CheckApiAuth(userCode);
|
|
|
- List<AppFoodPj> list = appFoodPjService.selectAppFoodPj(userCode.getQuery());
|
|
|
+ public BaseResponse<Object> appFoodPj(@RequestBody QueryPageParams<String> cardid) {
|
|
|
+ SecurityUtils.CheckApiAuth(cardid);
|
|
|
+ List<AppFoodPj> list = appFoodPjService.selectAppFoodPj(cardid.getQuery());
|
|
|
return new BaseResponse<>(list);
|
|
|
}
|
|
|
|
|
@@ -154,4 +154,11 @@ public class OpenApiController {
|
|
|
return new BaseResponse<>(dmServicePjService.enableApp());
|
|
|
}
|
|
|
|
|
|
+ @AnonymousPostMapping(value = "/findDmServicePjByUserCodeAndPjTime")
|
|
|
+ @Log("用户服务评价详情")
|
|
|
+ @ApiOperation("用户服务评价详情")
|
|
|
+ public BaseResponse<Object> findDmServicePjByUserCodeAndPjTime(@RequestBody QueryPageParams<DmServicePj> criteria){
|
|
|
+ SecurityUtils.CheckApiAuth(criteria);
|
|
|
+ return new BaseResponse<>(dmServicePjService.getDmServicePjByUserCodeAndPjTime(criteria.getQuery().getUserCode()));
|
|
|
+ }
|
|
|
}
|