| | |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PathVariable; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | @FeignClient(name = Constants.SERVICE_EQUIPMENT, contextId = "unionUser", path = "unionUser") |
| | | public interface ComEquipmentUnionUserFeign { |
| | |
| | | R authentication(UnionUserDto unionUserDto); |
| | | |
| | | |
| | | /** |
| | | * 使用id查找用户 |
| | | * |
| | | * @param id |
| | | * @return 总工会户外劳共用户 |
| | | */ |
| | | @PostMapping("/selectById") |
| | | UnionUserDto selectById(@RequestParam(value = "id") Long id); |
| | | |
| | | |
| | | } |