| | |
| | | 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; |
| | |
| | | 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) |