package com.gkhy.system.mapper;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.gkhy.system.domain.DailySafetyInspectionDept;
|
import com.gkhy.system.domain.DailySafetyInspectionUser;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* <p>
|
* 日常检查人员表 Mapper 接口
|
* </p>
|
*
|
* @author hh
|
* @since 2025-09-08 10:36:52
|
*/
|
@Mapper
|
public interface DailySafetyInspectionDeptMapper extends BaseMapper<DailySafetyInspectionDept> {
|
|
}
|