update 优化任务办理人翻译实现
This commit is contained in:
parent
e4ea8a0012
commit
45ca34514f
@ -4,4 +4,3 @@ org.dromara.common.translation.core.impl.DictTypeTranslationImpl
|
||||
org.dromara.common.translation.core.impl.OssUrlTranslationImpl
|
||||
org.dromara.common.translation.core.impl.UserNameTranslationImpl
|
||||
org.dromara.common.translation.core.impl.NicknameTranslationImpl
|
||||
org.dromara.common.translation.core.impl.TaskAssigneeTranslationImpl
|
||||
|
@ -1,4 +1,4 @@
|
||||
package org.dromara.common.core.service;
|
||||
package org.dromara.workflow.service;
|
||||
|
||||
import org.dromara.common.core.domain.dto.UserDTO;
|
||||
|
@ -12,7 +12,7 @@ import lombok.extern.slf4j.Slf4j;
|
||||
import org.dromara.common.core.domain.dto.UserDTO;
|
||||
import org.dromara.common.core.enums.BusinessStatusEnum;
|
||||
import org.dromara.common.core.exception.ServiceException;
|
||||
import org.dromara.common.core.service.AssigneeService;
|
||||
import org.dromara.workflow.service.AssigneeService;
|
||||
import org.dromara.common.core.utils.SpringUtils;
|
||||
import org.dromara.common.core.utils.StreamUtils;
|
||||
import org.dromara.common.core.utils.StringUtils;
|
||||
|
@ -1,16 +1,22 @@
|
||||
package org.dromara.common.translation.core.impl;
|
||||
package org.dromara.workflow.service.impl;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import org.dromara.common.core.service.AssigneeService;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.dromara.common.translation.annotation.TranslationType;
|
||||
import org.dromara.common.translation.constant.TransConstant;
|
||||
import org.dromara.common.translation.core.TranslationInterface;
|
||||
import org.dromara.workflow.service.AssigneeService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 任务办理人翻译实现
|
||||
*
|
||||
* @author AprilWind
|
||||
*/
|
||||
@Slf4j
|
||||
@RequiredArgsConstructor
|
||||
@Service
|
||||
@AllArgsConstructor
|
||||
@TranslationType(type = TransConstant.TASK_ID_TO_ASSIGNEE)
|
||||
public class TaskAssigneeTranslationImpl implements TranslationInterface<String> {
|
Loading…
x
Reference in New Issue
Block a user