package com.gkhy.system.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gkhy.system.domain.DailySafetyInspection; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** *

* 日常安全检查主表 Mapper 接口 *

* * @author hh * @since 2025-09-08 10:36:52 */ @Mapper public interface DailySafetyInspectionMapper extends BaseMapper { List getDailySafetyInspectionList(DailySafetyInspection dailySafetyInspection); int getCheckCount(Long deptId); }