删除草稿接口 api/lawss/activiti/delCG

This commit is contained in:
yuezhihang
2021-12-05 15:50:46 +08:00
parent 7f88babb5f
commit 51e67d4440
3 changed files with 15 additions and 0 deletions
@@ -408,4 +408,7 @@ public interface workFlowFeignClient {
@RequestMapping(value = "/bat-wkflow/datas/bus-process-new/everyDayTenOlockSAM",method = RequestMethod.GET)
List<BusProcessNew> everyDayTenOlockSAM();
@RequestMapping(value = "/bat-wkflow/delCG",method = RequestMethod.GET)
String delCG(@RequestParam("id") String id);
}
@@ -321,4 +321,8 @@ public class workFlowFeignClientImpl {
public List<BusProcessName> queryBusProcessNameForEnd(@RequestBody String prcNum){
return workFlowFeignClient.queryBusProcessNameForEnd(prcNum);
}
public String delCG(@RequestParam("id") String id){
return workFlowFeignClient.delCG(id);
}
}
@@ -687,4 +687,12 @@ public class WorkFlowController {
}
return Result.success("发送成功");
}
@ApiOperation(value = "草稿删除")
@GetMapping("/delCG")
public String delCG(@RequestParam("id")String id){
return workFlowFeignClient.delCG(id);
}
}