| | |
| | | |
| | | import java.util.List; |
| | | |
| | | @FeignClient(name = "common-service", configuration = {FeignConfiguration.class}) |
| | | |
| | | @FeignClient(name = "${java110.common-service}", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/oaWorkflowUserApi") |
| | | public interface IOaWorkflowUserInnerServiceSMO { |
| | | |
| | |
| | | @RequestMapping(value = "/getTaskCurrentUser", method = RequestMethod.POST) |
| | | JSONObject getTaskCurrentUser(@RequestBody JSONObject reqJson); |
| | | |
| | | @RequestMapping(value = "/nextAllNodeTaskList", method = RequestMethod.POST) |
| | | List<JSONObject> nextAllNodeTaskList(@RequestBody JSONObject reqJson); |
| | | } |