删除草稿接口 api/lawss/activiti/delCG
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user