package com.ruoyi.mapper;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.domain.ZYearInfo;
|
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 ZYearInfoMapper extends BaseMapper<ZYearInfo> {
|
@Select("select distinct type from z_year_info")
|
List<String> listType();
|
|
}
|