|
@@ -53,6 +53,15 @@ public class CacheContext implements CommandLineRunner {
|
|
|
@Autowired
|
|
|
private IProBasicWeatherStationService proBasicWeatherStationService;//气象站
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private IProEconManufacturerService proEconManufacturerService; //设备厂商
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IProEconEquipmentmodelService proEconEquipmentmodelService; //设备型号
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private IProBasicModelPowerService proBasicModelPowerService; //设备类型
|
|
|
+
|
|
|
//集团
|
|
|
public static Map<String, ProBasicEnergyGroup> energymap = new HashMap<>();
|
|
|
public static List<ProBasicEnergyGroup> groups = new ArrayList<>();
|
|
@@ -104,8 +113,20 @@ public class CacheContext implements CommandLineRunner {
|
|
|
public static Map<String, ProBasicSquare> squareMap = new HashMap<>();
|
|
|
public static Map<String, List<ProBasicSquare>> poSquareMap = new HashMap<>();
|
|
|
|
|
|
+ //设备厂商
|
|
|
+ public static List<ProEconManufacturer> Manufacturers = new ArrayList<>();
|
|
|
+ public static Map<String, ProEconManufacturer> ManufacturerMap = new HashMap<>();
|
|
|
+ public static Map<String, List<ProEconManufacturer>> poManufacturerMap = new HashMap<>();
|
|
|
|
|
|
+ //设备型号
|
|
|
+ public static List<ProEconEquipmentmodel> Equipments = new ArrayList<>();
|
|
|
+ public static Map<String, ProEconEquipmentmodel> EquipmentMap = new HashMap<>();
|
|
|
+ public static Map<String, List<ProEconEquipmentmodel>> poEquipmentMap = new HashMap<>();
|
|
|
|
|
|
+ //设备类型
|
|
|
+ public static List<ProBasicModelPower> models = new ArrayList<>();
|
|
|
+ public static Map<String, ProBasicModelPower> modelMap = new HashMap<>();
|
|
|
+ public static Map<String, List<ProBasicModelPower>> pomodelMap = new HashMap<>();
|
|
|
|
|
|
@Override
|
|
|
public void run(String... args) throws Exception {
|
|
@@ -139,6 +160,15 @@ public class CacheContext implements CommandLineRunner {
|
|
|
//气象站
|
|
|
initWsStationList();
|
|
|
|
|
|
+ //设备厂商
|
|
|
+ initManufacturerList();
|
|
|
+
|
|
|
+ //设备型号
|
|
|
+ initEquipmentmodelList();
|
|
|
+
|
|
|
+ //设备类型
|
|
|
+ initModelPowerList();
|
|
|
+
|
|
|
System.out.println(">>>>>>>>>>>>>>>数据缓存完成<<<<<<<<<<<<<<");
|
|
|
|
|
|
}
|
|
@@ -313,4 +343,40 @@ public class CacheContext implements CommandLineRunner {
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 初始化设备厂商数据
|
|
|
+ */
|
|
|
+ public void initManufacturerList(){
|
|
|
+ Manufacturers.clear();
|
|
|
+ ManufacturerMap.clear();
|
|
|
+ Manufacturers = proEconManufacturerService.list();
|
|
|
+ Manufacturers.stream().forEach(Manufacturer -> {
|
|
|
+ ManufacturerMap.put(Manufacturer.getId(), Manufacturer);
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 初始化设备型号数据
|
|
|
+ */
|
|
|
+ public void initEquipmentmodelList(){
|
|
|
+ Equipments.clear();
|
|
|
+ EquipmentMap.clear();
|
|
|
+ Equipments = proEconEquipmentmodelService.list();
|
|
|
+ Equipments.stream().forEach(Equipment -> {
|
|
|
+ EquipmentMap.put(Equipment.getId(), Equipment);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 初始化设备类型数据
|
|
|
+ */
|
|
|
+ public void initModelPowerList(){
|
|
|
+ models.clear();
|
|
|
+ modelMap.clear();
|
|
|
+ models = proBasicModelPowerService.list();
|
|
|
+ models.stream().forEach(model -> {
|
|
|
+ modelMap.put(model.getId(), model);
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|