| | |
| | | |
| | | import java.util.List; |
| | | |
| | | @FeignClient(name = "common-service", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "${java110.common-service}", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/complaintUserApi") |
| | | public interface IComplaintUserInnerServiceSMO { |
| | | |
| | |
| | | @RequestMapping(value = "/getTaskCurrentUser", method = RequestMethod.POST) |
| | | public ComplaintDto getTaskCurrentUser(@RequestBody ComplaintDto complaintDto); |
| | | |
| | | @RequestMapping(value = "/deleteTask", method = RequestMethod.POST) |
| | | public boolean deleteTask(@RequestBody ComplaintDto complaintDto); |
| | | |
| | | } |