| | |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @Component |
| | | @AllArgsConstructor |
| | | @TranslationType(type = TransConstant.OSS_ID_TO_URL) |
| | | public class OssUrlTranslationImpl implements TranslationInterface { |
| | | public class OssUrlTranslationImpl implements TranslationInterface<String> { |
| | | |
| | | private final OssService ossService; |
| | | |
| | | public String translation(Object key, String other) { |
| | | if (key instanceof String ids) { |
| | | return ossService.selectUrlByIds(ids); |
| | | } else if (key instanceof Long id) { |
| | | return ossService.selectUrlByIds(id.toString()); |
| | | } |
| | | return null; |
| | | } |