fix: 修复循环依赖问题

pull/20/head
Parker 2 years ago
parent cd7a4df3b0
commit c5b5e0fc9c

@ -46,6 +46,7 @@ import org.opsli.modulars.system.user.mapper.UserRoleRefMapper;
import org.opsli.modulars.system.user.service.IUserRoleRefService;
import org.opsli.modulars.system.user.service.IUserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@ -59,6 +60,7 @@ import java.util.List;
* @date 2020-09-16 17:33
*/
@Service
@Lazy
public class UserRoleRefServiceImpl extends ServiceImpl<UserRoleRefMapper, SysUserRoleRef> implements IUserRoleRefService {
@Autowired(required = false)

Loading…
Cancel
Save