zqy
2024-12-03 f804b27a8bedc95e76bd1ab93530ed3f07c496ef
zhang-content/src/main/java/com/ruoyi/mapper/ZfPropertyMapper.java
@@ -2,6 +2,9 @@
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
@@ -12,6 +15,8 @@
@Mapper
public interface ZfPropertyMapper extends BaseMapper<ZfProperty>
{
    @Select("select distinct type from zf_property")
    List<String> listType();
}