ÎļþÃû´Ó src/main/java/com/moon/server/mapper/data/LayerMapper.java ÐÞ¸Ä |
| | |
| | | package com.moon.server.mapper.data; |
| | | package com.moon.server.mapper.sys; |
| | | |
| | | import com.moon.server.entity.data.LayerEntity; |
| | | import com.moon.server.entity.sys.LayerEntity; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | |
| | | /** |
| | | * æ¥è¯¢è®°å½æ° |
| | | * |
| | | * @param cnName 䏿åç§° |
| | | * @param name åç§° |
| | | * @return è®°å½æ° |
| | | */ |
| | | public Integer selectCount(String cnName); |
| | | public Integer selectCount(String name); |
| | | |
| | | /** |
| | | * å页æ¥è¯¢ |
| | | * |
| | | * @param cnName 䏿åç§° |
| | | * @param name åç§° |
| | | * @param limit è®°å½æ° |
| | | * @param offset åç§»é |
| | | * @return å表 |
| | | */ |
| | | public List<LayerEntity> selectByPage(String cnName, Integer limit, Integer offset); |
| | | public List<LayerEntity> selectByPage(String name, Integer limit, Integer offset); |
| | | |
| | | /** |
| | | * æ¥è¯¢ææ |