package com.gk.firework.Mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gk.firework.Domain.ProductPriceInfo; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface ProductPriceInfoMapper extends BaseMapper { int deleteByPrimaryKey(Long id); ProductPriceInfo selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(ProductPriceInfo record); int updateByPrimaryKey(ProductPriceInfo record); ProductPriceInfo selectByCode(@Param("companynumber") String companynumber,@Param("directionCode") String directionCode); List selectByCodes(@Param("companynumber") String companynumber,@Param("list") List direction10CodesList); }