|
@@ -3,16 +3,22 @@ package com.lantone.qc.kernel.catalogue.crisisvaluereport;
|
|
|
import com.lantone.qc.kernel.catalogue.QCCatalogue;
|
|
|
import com.lantone.qc.pub.model.InputInfo;
|
|
|
import com.lantone.qc.pub.model.OutputInfo;
|
|
|
+import com.lantone.qc.pub.model.doc.CrisisValueReportDoc;
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* @Description:
|
|
|
* @author: rengb
|
|
|
* @time: 2020/3/19 19:54
|
|
|
*/
|
|
|
+@Component
|
|
|
public class CRI0387 extends QCCatalogue {
|
|
|
|
|
|
@Override
|
|
|
public void start(InputInfo inputInfo, OutputInfo outputInfo) {
|
|
|
+ List<CrisisValueReportDoc> crisisValueReportDocs = inputInfo.getCrisisValueReportDocs();
|
|
|
|
|
|
}
|
|
|
|