| | |
| | | package com.yeshi.fanli.dao.mybatis.homemodule; |
| | | |
| | | import java.util.List; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import com.yeshi.fanli.entity.bus.homemodule.SpecialCard; |
| | | |
| | | public interface SpecialCardMapper { |
| | |
| | | int updateByPrimaryKeySelective(SpecialCard record); |
| | | |
| | | int updateByPrimaryKey(SpecialCard record); |
| | | |
| | | |
| | | int deleteBatchByPrimaryKey(List<Long> list); |
| | | |
| | | |
| | | List<SpecialCard> listQuery(@Param("start") long start, @Param("count") int count, @Param("key") String key, |
| | | @Param("sort") Integer sort); |
| | | |
| | | long countlistQuery(@Param("key") String key); |
| | | |
| | | |
| | | } |