lidongdong
2023-08-24 e292ce1cb45aebea0b487c4e6ef6925b226f35b7
新增小程序积分列表  修改积分发放流程
2个文件已修改
4 ■■■■ 已修改文件
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/VolunteerIntegralRecordApi.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/VolunteerIntegralRecordServiceImpl.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/VolunteerIntegralRecordApi.java
@@ -41,7 +41,7 @@
    @GetMapping("/getId")
    public R VolunteerIntegralRecordGetList(@RequestParam("pageNum") int pageNum,
                                            @RequestParam("pageSize")  int pageSize,
              @RequestParam("userId") String userId)
                                            @RequestParam("userId") String userId)
    {
        return volunteerIntegralRecordService.getList(pageNum,pageSize,userId);
    }
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/VolunteerIntegralRecordServiceImpl.java
@@ -26,7 +26,7 @@
    @Override
    public R getList(int pageNum, int pageSize, String userId)
    {
        Page page = new Page<VolunteerActivity>(pageNum,pageSize);
        Page page = new Page<VolunteerIntegralRecord>(pageNum,pageSize);
        return R.ok(baseMapper.getList(page,userId));
    }