ios内购
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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){
|
||||
|
||||
Reference in New Issue
Block a user