package com.interplug.qcast.biz.displayItem; import com.interplug.qcast.biz.displayItem.dto.DisplayItemRequest; import com.interplug.qcast.biz.displayItem.dto.ItemResponse; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; @Mapper public interface DisplayItemMapper { void setStoreDisplayItemSave(DisplayItemRequest displayItemRequest) throws Exception; List getItemList(@Param("saleStoreId") String saleStoreId); ItemResponse getItemDetail(@Param("itemId") String itemId); }