package com.matrix.system.shopXcx.dao; import com.matrix.system.shopXcx.bean.ShopDeliveryDetail; import org.apache.ibatis.annotations.Param; import java.util.List; import java.util.Map; import com.matrix.core.pojo.PaginationVO; /** * @description 发货明细 * @author yourName * @date 2019-10-21 15:02 */ public interface ShopDeliveryDetailDao{ public int insert(@Param("item") ShopDeliveryDetail shopDeliveryDetail); public int batchInsert(@Param("list") List shopDeliveryDetailList); public int updateByMap(Map modifyMap); public int updateByModel(@Param("record") ShopDeliveryDetail shopDeliveryDetail); public int deleteByIds(@Param("list") List list); public int deleteById(Integer id); public int deleteByModel(@Param("record") ShopDeliveryDetail shopDeliveryDetail); public List selectInPage(@Param("record") ShopDeliveryDetail shopDeliveryDetail, @Param("pageVo") PaginationVO pageVo); public List selectByModel(@Param("record") ShopDeliveryDetail shopDeliveryDetail); public int selectTotalRecord(@Param("record") ShopDeliveryDetail shopDeliveryDetail); public ShopDeliveryDetail selectById(Integer id); public ShopDeliveryDetail selectForUpdate(Integer id); }