getByLineId
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user