| | |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.auditMessage.AuditMessageDto; |
| | | import com.java110.dto.audit.AuditMessageDto; |
| | | import com.java110.dto.oaWorkflow.OaWorkflowXmlDto; |
| | | import com.java110.entity.audit.AuditUser; |
| | | import com.java110.dto.audit.AuditUser; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | import java.util.List; |
| | | |
| | | |
| | | @FeignClient(name = "${java110.common-service}", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "common-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/oaWorkflowActivitiApi") |
| | | public interface IOaWorkflowActivitiInnerServiceSMO { |
| | | |
| | |
| | | @RequestMapping(value = "/getTaskCurrentUser", method = RequestMethod.POST) |
| | | JSONObject getTaskCurrentUser(@RequestBody JSONObject reqJson); |
| | | |
| | | |
| | | /** |
| | | * |
| | | * @param reqJson{ |
| | | * taskId:'', |
| | | * startUserId:'' |
| | | * } |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/getCurrentNodeTask", method = RequestMethod.POST) |
| | | JSONObject getCurrentNodeTask(@RequestBody JSONObject reqJson); |
| | | /** |
| | | * |
| | | * @param reqJson{ |