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 shopDeliveryInfoList); public int updateByMap(Map modifyMap); public int updateByModel(@Param("record") ShopDeliveryInfo shopDeliveryInfo); public int deleteByIds(@Param("list") List list); public int deleteById(Integer id); public int deleteByModel(@Param("record") ShopDeliveryInfo shopDeliveryInfo); public List selectInPage(@Param("record") ShopDeliveryInfo shopDeliveryInfo, @Param("pageVo") PaginationVO pageVo); public List selectByModel(@Param("record") ShopDeliveryInfo shopDeliveryInfo); public int selectTotalRecord(@Param("record") ShopDeliveryInfo shopDeliveryInfo); public ShopDeliveryInfo selectById(Integer id); public List selectAutomaticReceive(); public ShopDeliveryInfo selectForUpdate(Integer id); public ShopDeliveryInfo selectByOrderId(@Param("orderId") Integer orderId); public String selectDescribeByOrderId(@Param("orderId") Integer orderId); }