songhuangfeng123
2022-08-17 8702c17288c16ec3d6760326e85cae37bbb10af8
1
2
3
4
5
6
7
8
9
10
11
12
package com.gkhy.safePlatform.incidentManage.service;
 
import com.gkhy.safePlatform.commons.vo.ResultVO;
import com.gkhy.safePlatform.incidentManage.model.dto.resp.AccidentReportCountRespDTO;
import com.gkhy.safePlatform.incidentManage.query.AccidentReportCountQuery;
 
import java.util.List;
 
public interface AccidentCountService {
 
    ResultVO<List<AccidentReportCountRespDTO>> countAccidentReport(AccidentReportCountQuery query);
}