| package com.matrix.system.hive.dao; | 
|   | 
| import com.matrix.system.hive.bean.SysOutStoreItem; | 
| import org.apache.ibatis.annotations.Param; | 
|   | 
| import com.matrix.core.pojo.PaginationVO; | 
|   | 
| import java.util.List; | 
|   | 
|   | 
| /** | 
|  * | 
|  * @date 2016-07-25 12:43 | 
|  */ | 
|   | 
|   | 
| public interface SysOutStoreItemDao{ | 
|   | 
|     public int insert(SysOutStoreItem sysOutStoreItem); | 
|   | 
|     public int batchInsert(@Param("list") List<SysOutStoreItem> storeItemList); | 
|   | 
|     public int update(SysOutStoreItem sysOutStoreItem); | 
|      | 
|     public int deleteByIds(@Param("list") List<Long> list); | 
|      | 
|     public int deleteById(Long id); | 
|      | 
|     public List<SysOutStoreItem> selectInPage(@Param("record") SysOutStoreItem sysOutStoreItem, @Param("pageVo") PaginationVO pageVo); | 
|   | 
|     public List<SysOutStoreItem> selectByModel(@Param("record") SysOutStoreItem sysOutStoreItem); | 
|      | 
|     public int  selectTotalRecord(@Param("record") SysOutStoreItem sysOutStoreItem); | 
|      | 
|     public SysOutStoreItem  selectById(Long id); | 
|   | 
|     public int deleteByOrderId(Long id); | 
|   | 
|     List<SysOutStoreItem> selectByOrderId(Long id); | 
|   | 
|   | 
| } |