package com.ruoyi.mapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ruoyi.domain.ZfProperty;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Select;
|
|
import java.util.List;
|
|
/**
|
* @Version 1.0
|
* @Author Jin_quan Ou
|
* @Date 2023-03-09 10:29
|
* 家庭资产记录Mapper接口
|
*/
|
@Mapper
|
public interface ZfPropertyMapper extends BaseMapper<ZfProperty>
|
{
|
@Select("select distinct type from zf_property")
|
List<String> listType();
|
|
|
}
|