heheng
2025-09-12 3b109477ba6bd8dce0f61eb75248e603e584d8af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.gkhy.system.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
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 DailySafetyInspectionUserMapper extends BaseMapper<DailySafetyInspectionUser> {
 
}