whywhyo
2023-09-18 d221c28fa06bd7f400b9e6510e8d3be30fe97f9f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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();
 
 
}