| | |
| | | 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 deleteByPrimaryKey(Long id); |
| | | |
| | | int insert(SpecialCard record); |
| | | |
| | | int insertSelective(SpecialCard record); |
| | | |
| | | SpecialCard selectByPrimaryKey(Long id); |
| | | |
| | | 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); |
| | | |
| | | |
| | | package com.yeshi.fanli.dao.mybatis.homemodule;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.yeshi.fanli.dao.BaseMapper;
|
| | | import com.yeshi.fanli.entity.bus.homemodule.SpecialCard;
|
| | |
|
| | | public interface SpecialCardMapper extends BaseMapper<SpecialCard>{
|
| | |
|
| | | |
| | | int deleteBatchByPrimaryKey(List<Long> list);
|
| | | |
| | | |
| | | List<SpecialCard> listQuery(@Param("start") long start, @Param("count") int count, @Param("key") String key);
|
| | | |
| | | long countlistQuery(@Param("key") String key);
|
| | | |
| | | |
| | | String getbottomPicture(@Param("placeKey") String placeKey);
|
| | | } |