对比新文件 |
| | |
| | | package com.gk.firework.Mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.gk.firework.Domain.DO.ProductDO; |
| | | import com.gk.firework.Domain.ProductInfo; |
| | | import com.gk.firework.Domain.ProductLocusInfo; |
| | | import com.gk.firework.Domain.Vo.ProductVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | |
| | | /** |
| | | * @author jingjy |
| | | */ |
| | | @Repository |
| | | public interface ProductInfoMapper extends BaseMapper<ProductInfo> { |
| | | /** |
| | | * 查询所有的产品信息 |
| | | * |
| | | * @param condition 查询参数 |
| | | * @return List<ProductInfo> |
| | | */ |
| | | List<ProductInfo> selectProductInfos(Map<String, Object> condition); |
| | | |
| | | List<ProductInfo> selectProductDataGrid(Map<String, Object> condition, Page<ProductInfo> page); |
| | | |
| | | List<ProductInfo> selectProductsByDirectionCode(@Param("directionCode") String directionCode,@Param("companyNumber")String companyNumber); |
| | | |
| | | ProductInfo selectProductByDirectionCode(@Param("directionCode") String directionCode); |
| | | |
| | | ProductVo selectProductVoByDirectionCode(@Param("directionCode") String itemCode); |
| | | |
| | | Integer getSliceByDirectionCode(@Param("directionCode") String directionCode); |
| | | |
| | | void deleteByEnterpriseName(@Param("enterpriseName") String enterpriseName,@Param("name") String name); |
| | | |
| | | List<ProductInfo> selectProductInfo(Map<String, Object> condition); |
| | | |
| | | List<String> getAllProductCodes(); |
| | | |
| | | List<String> selectTypes(); |
| | | |
| | | List<ProductDO> selectDoByDirections(@Param("list") List<String> direction10Codes); |
| | | |
| | | } |