郑永安
2023-06-19 2fcd97552d16718cc7997629fd637a73a5a4483f
src/main/java/com/gk/firework/Mapper/ProductPriceInfoMapper.java
对比新文件
@@ -0,0 +1,24 @@
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<ProductPriceInfo> {
    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<ProductPriceInfo> selectByCodes(@Param("companynumber") String companynumber,@Param("list") List<String> direction10CodesList);
}