|
@@ -0,0 +1,25 @@
|
|
|
+package com.bizmatics.mhfire.service.impl;
|
|
|
+
|
|
|
+import com.bizmatics.mhfire.service.ReportComplaintService;
|
|
|
+import com.bizmatics.mhfire.service.vo.ReportComplaintVO;
|
|
|
+import com.bizmatics.mhfire.service.vo.ReportStatisticsVO;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author yq
|
|
|
+ * @date 2021/5/28 17:27
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class ReportComplaintServiceImpl implements ReportComplaintService {
|
|
|
+ @Override
|
|
|
+ public ReportStatisticsVO getReportStatistics() {
|
|
|
+ //TODO 从其他平台获取
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public ReportComplaintVO getReportComplaint() {
|
|
|
+ //TODO 从其他平台获取
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+}
|