| | |
| | | public R expurgatePeopleData(@RequestParam("id") String id); |
| | | |
| | | |
| | | /**************************************************************************************************************** |
| | | * |
| | | * |
| | | * 金汇慈善公益 |
| | | * |
| | | * |
| | | ******************************************************************************************************************/ |
| | | /** |
| | | * 分页查询 |
| | | * |
| | | * @param |
| | | * @return |
| | | */ |
| | | @GetMapping("/JinhuiCharity/getCharityList") |
| | | public R getCharityList(@RequestParam("pageNum") int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam(value = "title", required = false) String title, |
| | | @RequestParam(value = "label", required = false) String label, |
| | | @RequestParam(value = "state", required = false) String state); |
| | | |
| | | /** |
| | | * 获取详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("/JinhuiCharity/getCharityDetails") |
| | | public R getCharityDetails(@RequestParam("id") String id); |
| | | |
| | | /** |
| | | * 新增 |
| | | * @param |
| | | * @return |
| | | */ |
| | | @PostMapping("/JinhuiCharity/addCharityData") |
| | | public R addCharityData(@RequestBody JinhuiCharityVO item); |
| | | |
| | | @PostMapping("/JinhuiCharity/editCharityData") |
| | | public R editCharityData(@RequestBody JinhuiCharityVO item); |
| | | |
| | | @DeleteMapping("/JinhuiCharity/expurgateCharityData") |
| | | public R expurgateCharityData(@RequestParam("id") String id); |
| | | |
| | | |
| | | |