package com.ruoyi.mapper;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.domain.ZfCollection;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Select;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* Mapper 接口
|
* </p>
|
*
|
* @author ojq
|
* @since 2023-03-12
|
*/
|
@Mapper
|
public interface ZfCollectionMapper extends BaseMapper<ZfCollection> {
|
|
@Select("select distinct type from zf_collection")
|
List<String> listType();
|
}
|