| package com.matrix.system.hive.dao; | 
|   | 
| import java.util.List; | 
|   | 
| import com.matrix.core.pojo.PaginationVO; | 
| import com.matrix.system.common.bean.BusParameterSettings; | 
| import com.matrix.system.hive.bean.ShoppingGoodsCategory; | 
| import org.apache.ibatis.annotations.Param; | 
|   | 
|   | 
|   | 
| /** | 
|  * | 
|  * @date 2016-07-30 09:54 | 
|  */ | 
|   | 
|   | 
| public interface ShoppingGoodsCategoryDao{ | 
|   | 
|     public int insert(ShoppingGoodsCategory shoppingGoodsCategory); | 
|         | 
|     public int update(ShoppingGoodsCategory shoppingGoodsCategory); | 
|      | 
|     public int deleteByIds(@Param("list") List<Long> list); | 
|      | 
|     public int deleteById(Long id); | 
|      | 
|     public List<ShoppingGoodsCategory> selectInPage(@Param("record") ShoppingGoodsCategory shoppingGoodsCategory, @Param("pageVo") PaginationVO pageVo); | 
|   | 
|     public List<ShoppingGoodsCategory> selectByModel(@Param("record") ShoppingGoodsCategory shoppingGoodsCategory); | 
|      | 
|     public int  selectTotalRecord(@Param("record") ShoppingGoodsCategory shoppingGoodsCategory); | 
|      | 
|     public ShoppingGoodsCategory  selectById(Long id); | 
|   | 
|     public int batchInsert(@Param("list")List<ShoppingGoodsCategory> shoppingGoodsCategoryList); | 
|   | 
|     List<ShoppingGoodsCategory> selectChildNodesByName(@Param("record") ShoppingGoodsCategory shoppingGoodsCategory); | 
|   | 
| } |