合并框架更新
This commit is contained in:
@ -25,11 +25,11 @@
|
||||
<artifactId>hutool-all</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.xjrsoft</groupId>
|
||||
<artifactId>xjrsoft-service-system-api</artifactId>
|
||||
<version>${xjrsoft.framework.version}</version>
|
||||
</dependency>
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>com.xjrsoft</groupId>-->
|
||||
<!-- <artifactId>xjrsoft-service-system-api</artifactId>-->
|
||||
<!-- <version>${xjrsoft.framework.version}</version>-->
|
||||
<!-- </dependency>-->
|
||||
|
||||
<dependency>
|
||||
<groupId>com.xjrsoft</groupId>
|
||||
@ -51,11 +51,11 @@
|
||||
<version>${justauth.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.xjrsoft</groupId>
|
||||
<artifactId>xjrsoft-common-tenant</artifactId>
|
||||
<version>${xjrsoft.framework.version}</version>
|
||||
</dependency>
|
||||
<!-- <dependency>-->
|
||||
<!-- <groupId>com.xjrsoft</groupId>-->
|
||||
<!-- <artifactId>xjrsoft-common-tenant</artifactId>-->
|
||||
<!-- <version>${xjrsoft.framework.version}</version>-->
|
||||
<!-- </dependency>-->
|
||||
|
||||
</dependencies>
|
||||
|
||||
|
||||
@ -7,6 +7,7 @@ import com.xjrsoft.organization.vo.UserRoleVo;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
/**
|
||||
* @Author: tzx
|
||||
@ -68,4 +69,9 @@ public class UserClientFallBack implements IUserClient {
|
||||
public User getUserByCodeFeign(String code) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<User> getUserByIdsFeignSet(Set<String> userIds) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
@ -27,4 +27,9 @@ public class UserRoleRelationClientFallBack implements IUserRoleRelationClient {
|
||||
public boolean addUserRoleRelationFeign(UserRoleRelation userRoleRelation) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<UserRoleRelation> list(UserRoleRelation userRoleRelation) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user