heheng
2024-12-10 0ee9cf0938174798af956fc6ae301ef149fd8b6a
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> {
 
}