| | |
| | | package com.ruoyi.common.translation.core.impl; |
| | | |
| | | import com.ruoyi.common.core.service.UserService; |
| | | import com.ruoyi.common.translation.annotation.TranslationType; |
| | | import com.ruoyi.common.translation.constant.TransConstant; |
| | | import com.ruoyi.common.translation.core.TranslationInterface; |
| | | import org.springframework.stereotype.Component; |
| | | import lombok.AllArgsConstructor; |
| | | |
| | | /** |
| | | * 翻译接口 (实现类需标注 {@link com.ruoyi.common.translation.annotation.TranslationType} 注解标明翻译类型) |
| | | * 用户名翻译实现 |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @Component |
| | | @AllArgsConstructor |
| | | @TranslationType(type = TransConstant.USER_ID_TO_NAME) |
| | | public class UserNameTranslationImpl implements TranslationInterface { |
| | | public class UserNameTranslationImpl implements TranslationInterface<String> { |
| | | |
| | | /** |
| | | * 翻译 |
| | | * |
| | | * @param key 需要被翻译的键 |
| | | * @return 返回键对应的值 |
| | | */ |
| | | public String translation(Object key) { |
| | | private final UserService userService; |
| | | |
| | | public String translation(Object key, String other) { |
| | | if (key instanceof Long id) { |
| | | return "admin"; |
| | | return userService.selectUserNameById(id); |
| | | } |
| | | return null; |
| | | } |