青羊经侦大队-数据平台
baizonghao
2023-03-21 94c89cf9f870027a290ea1c1c768d9901346acbf
src/main/java/com/example/jz/controller/CauseController.java
@@ -16,6 +16,7 @@
import com.example.jz.modle.dto.ReportParamDto;
import com.example.jz.modle.entity.Cause;
import com.example.jz.modle.entity.GroupUser;
import com.example.jz.modle.vo.NewCauseVo;
import com.example.jz.modle.vo.ReportListVo;
import com.example.jz.service.CauseService;
import com.example.jz.service.GroupService;
@@ -87,6 +88,13 @@
        return R.ok(causeService.getCauserListByCondition(cause, status, size, current));
    }
    @GetMapping("/getVxCauseList")
    @ApiOperation(httpMethod = "GET", value = "微信找案件")
    public R getVxCauseList(@RequestParam String phone){
        List<NewCauseVo> res =  causeService.getVxCauseList(phone);
        return R.ok(res);
    }
    @ApiOperation(httpMethod = "GET", value = "案件台-案件录入-案件录入列表")
    @GetMapping("/getCause")
    @ApiResponse(message = "执行成功", code = 200)