|
@@ -0,0 +1,35 @@
|
|
|
+package org.jetlinks.community.auth.service;
|
|
|
+
|
|
|
+import org.hswebframework.ezorm.rdb.mapping.ReactiveRepository;
|
|
|
+import org.hswebframework.web.system.authorization.api.entity.DimensionTypeEntity;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.boot.CommandLineRunner;
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
+import reactor.core.publisher.Flux;
|
|
|
+
|
|
|
+@Component
|
|
|
+public class DimensionInitService implements CommandLineRunner {
|
|
|
+
|
|
|
+ private final ReactiveRepository<DimensionTypeEntity, String> dimensionTypeRepository;
|
|
|
+
|
|
|
+ public DimensionInitService(ReactiveRepository<DimensionTypeEntity, String> dimensionTypeRepository) {
|
|
|
+ this.dimensionTypeRepository = dimensionTypeRepository;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void run(String... args) throws Exception {
|
|
|
+ DimensionTypeEntity org =new DimensionTypeEntity();
|
|
|
+ org.setId("org");
|
|
|
+ org.setName("机构");
|
|
|
+ org.setDescribe("机构维度");
|
|
|
+
|
|
|
+ DimensionTypeEntity role =new DimensionTypeEntity();
|
|
|
+ role.setId("role");
|
|
|
+ role.setName("角色");
|
|
|
+ role.setDescribe("角色维度");
|
|
|
+
|
|
|
+ dimensionTypeRepository.save(Flux.just(org,role))
|
|
|
+ .subscribe();
|
|
|
+
|
|
|
+ }
|
|
|
+}
|