heheng
2025-09-09 5962618fd69bdc55ab9b16ff9ddfbb4d428cb076
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
 
/**
 * <p>
 * 日常安全检查主表 Mapper 接口
 * </p>
 *
 * @author hh
 * @since 2025-09-08 10:36:52
 */
@Mapper
public interface DailySafetyInspectionMapper extends BaseMapper<DailySafetyInspection> {
 
 
    List<DailySafetyInspection> getDailySafetyInspectionList(DailySafetyInspection dailySafetyInspection);
}