zqy
2024-06-10 68f85f044cd71cd3db6514c3bf5b5129ed2e3e78
zhang-content/src/main/java/com/ruoyi/mapper/ZPropertyMapper.java
@@ -4,6 +4,9 @@
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;
/**
 * <p>
@@ -15,5 +18,6 @@
 */
@Mapper
public interface ZPropertyMapper extends BaseMapper<ZProperty> {
    @Select("select distinct type from z_property")
    List<String> listType();
}