ios内购

This commit is contained in:
wuchunlei
2024-07-09 16:48:28 +08:00
parent ec17636fe6
commit 472021ca9b
7 changed files with 93 additions and 99 deletions

View File

@@ -38,6 +38,7 @@ public class BookBuyConfigController {
if (params.containsKey("qudao")&&StringUtils.isNotEmpty(params.get("qudao").toString())){
wrapper.eq(BookBuyConfigEntity::getQudao,params.get("qudao"));
}
wrapper.orderByAsc(BookBuyConfigEntity::getRealMoney);
List<BookBuyConfigEntity> list = service.list(wrapper);
return R.ok().put("bookBuyConfigList",list);
}

View File

@@ -43,6 +43,15 @@ public class SysFeedbackController {
return R.ok().put("sysFeedback",sysFeedbackService.getById(params));
}
@RequestMapping("/editStatusById")
public R editStatusById(@RequestBody Map<String,Object> params){
if (sysFeedbackService.editStatusById(params)>0){
return R.ok();
}else {
return R.error("修改失败");
}
}
@RequestMapping("/delById")
public R delById(@RequestBody Map<String,Object> params){
if (sysFeedbackService.delById(params)>0){