| | |
| | | package org.dromara.common.translation.core.impl; |
| | | |
| | | import lombok.AllArgsConstructor; |
| | | import org.dromara.common.core.service.DeptService; |
| | | import org.dromara.common.core.service.EquTypeService; |
| | | import org.dromara.common.translation.annotation.TranslationType; |
| | | import org.dromara.common.translation.constant.TransConstant; |
| | |
| | | * @author zhuguifei |
| | | */ |
| | | @AllArgsConstructor |
| | | @TranslationType(type = TransConstant.EQU_YPE_ID_TO_NAME) |
| | | @TranslationType(type = TransConstant.EQU_TYPE_ID_TO_NAME) |
| | | public class EquTypeNameTranslationImpl implements TranslationInterface<String> { |
| | | |
| | | private final EquTypeService equTypeService; |