zhuo
2025-04-15 e6e5a67f94513e90da40cc28f21d0d2c6d9cbe7d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.manage.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.manage.pojo.InternalCheckDetail;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * 内审检查详情表
 *
 * @author zhuo
 * @since 2024-11-11
 */
@Mapper
public interface InternalCheckDetailMapper extends BaseMapper<InternalCheckDetail> {
 
}