|
@@ -0,0 +1,41 @@
|
|
|
+package com.sagacloud.route.processors.PeriodTask;
|
|
|
+/*
|
|
|
+ * Author: Jxing
|
|
|
+ * Create Time: 2018/7/13
|
|
|
+ */
|
|
|
+
|
|
|
+import com.sagacloud.pojos.DPSelectPropertyResult;
|
|
|
+import com.sagacloud.pojos.VenderStatistics;
|
|
|
+import com.sagacloud.utils.VendersUtil;
|
|
|
+import org.apache.camel.Exchange;
|
|
|
+import org.apache.camel.Processor;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+import java.util.Set;
|
|
|
+
|
|
|
+public class StatisticsProcessor implements Processor {
|
|
|
+ public static final Set<String> manufacturerNameSign = VendersUtil.createSet("Manufacturer", "Brand", "Specification");
|
|
|
+ public static final Set<String> manufacturerIdSign = VendersUtil.createSet("DPManufacturerID", "DPSpecificationID");
|
|
|
+ public static final Set<String> supplierNameSign = VendersUtil.createSet("Supplier");
|
|
|
+ public static final Set<String> supplierIdSign = VendersUtil.createSet("DPSupplierID");
|
|
|
+ public static final Set<String> insuranceNameSign = VendersUtil.createSet("Insurer", "InsuranceNum");
|
|
|
+ public static final Set<String> insuranceIdSign = VendersUtil.createSet("DPInsurerID");
|
|
|
+ public static final Set<String> maintainanceNameSign = VendersUtil.createSet("Maintainer");
|
|
|
+ public static final Set<String> maintainanceIdSign = VendersUtil.createSet("DPMaintainerID");
|
|
|
+ @Override
|
|
|
+ public void process(Exchange exchange) throws Exception {
|
|
|
+ String projectId = exchange.getIn().getBody(String.class);
|
|
|
+ DPSelectPropertyResult propertyData = (DPSelectPropertyResult) exchange.getProperty("propertyData");
|
|
|
+ Map<String, String> idMap = (Map<String, String>) exchange.getProperty("idMap");
|
|
|
+ Map<String, Map<String, String>> nameMap = (Map<String, Map<String, String>>) exchange.getProperty("nameMap");
|
|
|
+ List<Map<String, Object>> propertyList = propertyData.getContent();
|
|
|
+
|
|
|
+ for(int i = 0; i < propertyList.size(); ++i){
|
|
|
+ Map<String, Object> singleProperty = propertyList.get(i);
|
|
|
+ //Map<String, VenderStatistics>
|
|
|
+ //compareCount(idMap, nameMap, manufacturerIdSign, manufacturerNameSign);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+}
|