package com.ruoyi.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ruoyi.domain.ZProperty; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; import java.util.List; /** *

* 个人财产表 Mapper 接口 *

* * @author ojq * @since 2023-03-14 */ @Mapper public interface ZPropertyMapper extends BaseMapper { @Select("select distinct type from z_property") List listType(); }