18 lines
460 B
Java
18 lines
460 B
Java
package com.yupi.springbootinit.mapper;
|
|
import com.yupi.springbootinit.model.vo.country.CountryInfoVO;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.yupi.springbootinit.model.entity.CountryInfo;
|
|
|
|
/*
|
|
* @author: ziin
|
|
* @date: 2025/6/13 13:58
|
|
*/
|
|
|
|
public interface CountryInfoMapper extends BaseMapper<CountryInfo> {
|
|
|
|
List<CountryInfoVO> selectByCountryGroupName();
|
|
|
|
} |