| | |
| | | package com.yeshi.fanli.dao.mybatis; |
| | | |
| | | import java.util.List; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import com.yeshi.fanli.entity.bus.clazz.TaoBaoClass; |
| | | |
| | | public interface TaoBaoClassMapper { |
| | | |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | int insert(TaoBaoClass record); |
| | | |
| | | int insertSelective(TaoBaoClass record); |
| | | |
| | | TaoBaoClass selectByPrimaryKey(Long id); |
| | | |
| | | int updateByPrimaryKeySelective(TaoBaoClass record); |
| | | |
| | | int updateByPrimaryKey(TaoBaoClass record); |
| | | |
| | | List<TaoBaoClass> listBySystemCid(@Param("start") long start, @Param("count") int count, |
| | | @Param("systemCid") Long systemCid); |
| | | package com.yeshi.fanli.dao.mybatis;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.yeshi.fanli.dao.BaseMapper;
|
| | | import com.yeshi.fanli.entity.bus.clazz.TaoBaoClass;
|
| | |
|
| | | public interface TaoBaoClassMapper extends BaseMapper<TaoBaoClass>{
|
| | |
|
| | | |
| | | List<TaoBaoClass> listBySystemCid(@Param("start") long start, @Param("count") int count,
|
| | | @Param("systemCid") Long systemCid);
|
| | | |
| | | |
| | | List<TaoBaoClass> listBySystemSubCid(@Param("start") long start, @Param("count") int count,
|
| | | @Param("systemCid") Long systemCid);
|
| | | |
| | | /**
|
| | | * 根据淘宝分类查询
|
| | | * @param categoryId
|
| | | * @return
|
| | | */
|
| | | TaoBaoClass getByCategoryId(@Param("categoryId") Integer categoryId);
|
| | | } |