getByLineId

This commit is contained in:
苏竹红
2024-04-11 17:47:00 +08:00
parent d3dfbfbce9
commit 6f4f7cb6e8

View File

@@ -2,6 +2,7 @@ package com.cool.store.controller.webc;
import com.cool.store.response.ResponseResult;
import com.cool.store.service.LineService;
import com.cool.store.vo.IntendProcessTotalVO;
import com.cool.store.vo.LineInfoVO;
import com.cool.store.vo.interview.AppointmentTimeVO;
import io.swagger.annotations.Api;
@@ -50,6 +51,15 @@ public class LineController {
}
@ApiOperation("线索流程进度")
@GetMapping("/getIntendProcess")
@ApiImplicitParams({
@ApiImplicitParam(name = "lineId", value = "线索id", required = true)
})
public ResponseResult<IntendProcessTotalVO> getIntendProcessTotal(@RequestParam("lineId")Long lineId) {
return ResponseResult.success(lineService.getIntendProcessTotal(lineId));
}