heheng
2024-11-20 2d27b24029adafdbfc5703b38a519d65beda6a68
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.gkhy.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.system.domain.SysExpertClassify;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * <p>
 * 系统专家分类表 Mapper 接口
 * </p>
 *
 * @author kzy
 * @since 2023-11-27 16:33:33
 */
@Mapper
public interface SysExpertClassifyMapper extends BaseMapper<SysExpertClassify> {
 
}