| | |
| | | @Resource |
| | | private VolunteerMerchantService vtService; |
| | | |
| | | |
| | | |
| | | @GetMapping("/getById") |
| | | public R volunteerMerchantGetById(@RequestParam("id") String id) |
| | | { |
| | | return vtService.getById(id); |
| | | } |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * @param |
| | | * @return |
| | | */ |
| | | @GetMapping("/getList") |
| | | public R volunteerMerchantGetList(@RequestParam("pageNum") int pageNum, |
| | | public R volunteerMerchantGetList( int pageNum, |
| | | @RequestParam("pageSize") int pageSize, |
| | | @RequestParam(value = "merchantState", required = false) String merchantState, |
| | | @RequestParam(value = "merchantType", required = false) String merchantType, |