| | |
| | | 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 lombok.AllArgsConstructor; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | /** |
| | |
| | | * @author Lion Li |
| | | */ |
| | | @Component |
| | | @AllArgsConstructor |
| | | @TranslationType(type = TransConstant.USER_ID_TO_NAME) |
| | | public class UserNameTranslationImpl implements TranslationInterface { |
| | | |
| | | private final UserService userService; |
| | | |
| | | public String translation(Object key, String other) { |
| | | // todo 待实现 |
| | | if (key instanceof Long id) { |
| | | return "admin"; |
| | | return userService.selectUserNameById(id); |
| | | } |
| | | return null; |
| | | } |