|  |  |  | 
|---|
|  |  |  | package com.vincent.rsf.server.manager.mapper; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.vincent.rsf.server.api.entity.dto.PoItemsDto; | 
|---|
|  |  |  | import com.vincent.rsf.server.manager.entity.Purchase; | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
|---|
|  |  |  | import org.apache.ibatis.annotations.Mapper; | 
|---|
|  |  |  | import org.apache.ibatis.annotations.Param; | 
|---|
|  |  |  | import org.springframework.stereotype.Repository; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import java.util.List; | 
|---|
|  |  |  | import java.util.Set; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Mapper | 
|---|
|  |  |  | @Repository | 
|---|
|  |  |  | public interface PurchaseMapper extends BaseMapper<Purchase> { | 
|---|
|  |  |  |  | 
|---|
|  |  |  | List<PoItemsDto> poList(@Param("ids") Set<Long> ids); | 
|---|
|  |  |  | } | 
|---|