whywhyo
2023-10-30 08d830533739a4e0755e2dee3b259ed760973db0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.ruoyi.mapper;
 
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.domain.ZHonor;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
 
import java.util.List;
 
/**
 * <p>
 * 证件、荣誉、资质表 Mapper 接口
 * </p>
 *
 * @author ojq
 * @since 2023-03-14
 */
@Mapper
public interface ZHonorMapper extends BaseMapper<ZHonor> {
 
    @Select("select distinct name from z_honor")
    List<String> listType();
 
}