Commit b647104c authored by lisong's avatar lisong

96333统计分析添加当月数据生成逻辑

parent 65b54d3f
...@@ -13,7 +13,7 @@ import java.util.List; ...@@ -13,7 +13,7 @@ import java.util.List;
*/ */
public interface IAlertDispatchStatisticsService { public interface IAlertDispatchStatisticsService {
void statisticalGeneration(); void statisticalGeneration(String type);
List<AlertDispatchStatistics> getList(String date); List<AlertDispatchStatistics> getList(String date);
} }
...@@ -13,7 +13,7 @@ import java.util.List; ...@@ -13,7 +13,7 @@ import java.util.List;
*/ */
public interface IAlertMaintenanceUnitStatisticsService { public interface IAlertMaintenanceUnitStatisticsService {
void statisticalGeneration(); void statisticalGeneration(String type);
List<AlertMaintenanceUnitStatistics> getList(String date); List<AlertMaintenanceUnitStatistics> getList(String date);
......
...@@ -13,7 +13,7 @@ import java.util.List; ...@@ -13,7 +13,7 @@ import java.util.List;
*/ */
public interface IAlertPlaceStatisticsService { public interface IAlertPlaceStatisticsService {
void statisticalGeneration(); void statisticalGeneration(String type);
List<AlertPlaceStatistics> placeList(String date); List<AlertPlaceStatistics> placeList(String date);
} }
...@@ -13,7 +13,7 @@ import java.util.List; ...@@ -13,7 +13,7 @@ import java.util.List;
*/ */
public interface IAlertRescueStatisticsService { public interface IAlertRescueStatisticsService {
void statisticalGeneration(); void statisticalGeneration(String type);
List<AlertRescueStatistics> getList(String date); List<AlertRescueStatistics> getList(String date);
} }
...@@ -8,7 +8,7 @@ import java.util.List; ...@@ -8,7 +8,7 @@ import java.util.List;
public interface IAlertStatisticsService { public interface IAlertStatisticsService {
void statisticalGeneration(); void statisticalGeneration(String type);
List<AlertStatistics> getList(String date) throws ParseException; List<AlertStatistics> getList(String date) throws ParseException;
} }
...@@ -13,7 +13,7 @@ import java.util.List; ...@@ -13,7 +13,7 @@ import java.util.List;
*/ */
public interface IAlertUseUnitStatisticsService { public interface IAlertUseUnitStatisticsService {
void statisticalGeneration(); void statisticalGeneration(String type);
List<AlertUseUnitStatistics> getList(String date); List<AlertUseUnitStatistics> getList(String date);
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment