对比新文件 |
| | |
| | | package com.gk.firework.Mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gk.firework.Domain.ProductLocusInfo; |
| | | import com.gk.firework.Domain.Vo.ProductLocusVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Repository |
| | | public interface ProductLocusInfoMapper extends BaseMapper<ProductLocusInfo> { |
| | | |
| | | int insertProductLocus(@Param("productLocusInfo") ProductLocusInfo productLocusInfo, @Param("slice") String slice); |
| | | |
| | | List<ProductLocusVo> selectLists(@Param("directionCode") String directionCode, @Param("slice") String slice); |
| | | |
| | | List<ProductLocusVo> selectFlowByCodes(@Param("codes") List<String> codes, @Param("slice")String slice); |
| | | |
| | | int insertBatch(@Param("list") List<ProductLocusInfo> productLocuses); |
| | | } |