| package com.matrix.system.shopXcx.dao; | 
|   | 
| import com.matrix.system.shopXcx.bean.ShopDeliveryInfo; | 
| 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 ShopDeliveryInfoDao{ | 
|   | 
|     public int insert(@Param("item") ShopDeliveryInfo shopDeliveryInfo); | 
|         | 
|        public int batchInsert(@Param("list") List<ShopDeliveryInfo> shopDeliveryInfoList); | 
|         | 
|     public int updateByMap(Map<String, Object> modifyMap); | 
|      | 
|     public int updateByModel(@Param("record") ShopDeliveryInfo shopDeliveryInfo); | 
|      | 
|     public int deleteByIds(@Param("list") List<String> list); | 
|      | 
|     public int deleteById(Integer id); | 
|   | 
|     public int deleteByModel(@Param("record") ShopDeliveryInfo shopDeliveryInfo); | 
|      | 
|     public List<ShopDeliveryInfo> selectInPage(@Param("record") ShopDeliveryInfo shopDeliveryInfo, @Param("pageVo") PaginationVO pageVo); | 
|   | 
|     public List<ShopDeliveryInfo> selectByModel(@Param("record") ShopDeliveryInfo shopDeliveryInfo); | 
|      | 
|     public int selectTotalRecord(@Param("record") ShopDeliveryInfo shopDeliveryInfo); | 
|      | 
|     public ShopDeliveryInfo  selectById(Integer id); | 
|   | 
|     public List<ShopDeliveryInfo>  selectAutomaticReceive(); | 
|   | 
|     public ShopDeliveryInfo  selectForUpdate(Integer id); | 
|   | 
|     public ShopDeliveryInfo selectByOrderId(@Param("orderId") Integer orderId); | 
|   | 
|     public String selectDescribeByOrderId(@Param("orderId") Integer orderId); | 
|   | 
| } |