| | |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import com.yeshi.fanli.dao.BaseMapper; |
| | | import com.yeshi.fanli.entity.bus.clazz.TaoBaoClass; |
| | | |
| | | public interface TaoBaoClassMapper { |
| | | public interface TaoBaoClassMapper extends BaseMapper<TaoBaoClass>{ |
| | | |
| | | 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); |
| | | |
| | | |
| | | List<TaoBaoClass> listBySystemSubCid(@Param("start") long start, @Param("count") int count, |
| | | @Param("systemCid") Long systemCid); |
| | | |
| | | /** |
| | | * 根据淘宝分类查询 |
| | | * @param categoryId |
| | | * @return |
| | | */ |
| | | TaoBaoClass getByCategoryId(@Param("categoryId") Integer categoryId); |
| | | } |