package com.gk.hotwork.Service;
|
|
import com.gk.hotwork.Domain.UserInfo;
|
import com.gk.hotwork.Domain.Utils.Msg;
|
import com.gk.hotwork.Domain.dto.resp.SafetySelfInspectionRespDTO;
|
import com.gk.hotwork.Domain.query.CountQuery;
|
|
/**
|
* @email 1603559716@qq.com
|
* @author: zf
|
* @date: 2023/8/22
|
* @time: 15:41
|
*/
|
public interface SafetyInspectionStatisticService {
|
Msg getCountByArea(CountQuery query, UserInfo user);
|
|
Msg getUnCheckCompany(CountQuery query);
|
}
|