| package com.matrix.system.shopXcx.dao; | 
|   | 
| import com.matrix.system.shopXcx.bean.ShopLogisticsInfo; | 
| import org.apache.ibatis.annotations.Param; | 
| import java.util.List; | 
| import java.util.Map; | 
| import com.matrix.core.pojo.PaginationVO; | 
|   | 
| /** | 
|  * @description 物流信息表 | 
|  * @author jyy | 
|  * @date 2019-06-10 10:58 | 
|  */ | 
| public interface ShopLogisticsInfoDao{ | 
|   | 
|     public int insert(@Param("item") ShopLogisticsInfo shopLogisticsInfo); | 
|         | 
|        public int batchInsert(@Param("list") List<ShopLogisticsInfo> shopLogisticsInfoList); | 
|         | 
|     public int updateByMap(Map<String, Object> modifyMap); | 
|      | 
|     public int updateByModel(@Param("record") ShopLogisticsInfo shopLogisticsInfo); | 
|      | 
|     public int deleteByIds(@Param("list") List<String> list); | 
|      | 
|     public int deleteById(Integer id); | 
|   | 
|     public int deleteByModel(@Param("record") ShopLogisticsInfo shopLogisticsInfo); | 
|      | 
|     public List<ShopLogisticsInfo> selectInPage(@Param("record") ShopLogisticsInfo shopLogisticsInfo, @Param("pageVo") PaginationVO pageVo); | 
|   | 
|     public List<ShopLogisticsInfo> selectByModel(@Param("record") ShopLogisticsInfo shopLogisticsInfo); | 
|      | 
|     public int selectTotalRecord(@Param("record") ShopLogisticsInfo shopLogisticsInfo); | 
|      | 
|     public ShopLogisticsInfo  selectById(Integer id); | 
|      | 
|     public ShopLogisticsInfo  selectForUpdate(Integer id); | 
|   | 
|     public List<ShopLogisticsInfo> selectByDelieryId(Integer delieryId); | 
|   | 
|     public int deleteByDelieryId(Integer delieryId); | 
| } |