青羊经侦大队-数据平台
baizonghao
2023-04-23 4a9a9fa60f52be1e7c91f01df54b3cbae8c11d6c
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<List<NewCauseVo>> getVxCauseList(@RequestParam String phone){
        List<NewCauseVo> res =  causeService.getVxCauseList(phone);
        return R.ok(res);
    }
    @ApiOperation(httpMethod = "GET", value = "案件台-案件录入-案件录入列表")
    @GetMapping("/getCause")
    @ApiResponse(message = "执行成功", code = 200)