|
@@ -417,7 +417,7 @@ public class RaiseCapitalDesignService extends CrudService<RaiseCapitalDesignMap
|
|
|
List<CableSectionInfo> cableThreeHundredList=cableSectionData.getCableThreeHundredList();
|
|
|
List<CableSectionInfo> cableTwoHundredFortyList=cableSectionData.getCableTwoHundredFortyList();
|
|
|
List<CableSectionInfo> cableSeventyList=cableSectionData.getCableSeventyList();
|
|
|
- String voltageDisposeDataJson = JSON.toJSONString(dataList);
|
|
|
+ String cableDisposeDataJson = JSON.toJSONString(dataList);
|
|
|
String cableFourHundredListJson = JSON.toJSONString(cableFourHundredList);
|
|
|
String cableHundredAndTwentyListJson = JSON.toJSONString(cableHundredAndTwentyList);
|
|
|
String cableThreeHundredListJson = JSON.toJSONString(cableThreeHundredList);
|
|
@@ -426,7 +426,7 @@ public class RaiseCapitalDesignService extends CrudService<RaiseCapitalDesignMap
|
|
|
CacheChannel channel = J2Cache.getChannel();
|
|
|
RedisClient client = ((RedisCacheProvider)channel.getL2Provider()).getRedisClient();
|
|
|
BinaryJedisCommands binaryJedisCommands = client.get();
|
|
|
- binaryJedisCommands.set((cableSectionData.getUuid()+"voltageDisposeData").getBytes(),voltageDisposeDataJson.getBytes());
|
|
|
+ binaryJedisCommands.set((cableSectionData.getUuid()+"cableDisposeData").getBytes(),cableDisposeDataJson.getBytes());
|
|
|
binaryJedisCommands.set((cableSectionData.getUuid()+"cableFourHundred").getBytes(),cableFourHundredListJson.getBytes());
|
|
|
binaryJedisCommands.set((cableSectionData.getUuid()+"cableHundredAndTwenty").getBytes(),cableHundredAndTwentyListJson.getBytes());
|
|
|
binaryJedisCommands.set((cableSectionData.getUuid()+"cableThreeHundred").getBytes(),cableThreeHundredListJson.getBytes());
|