Rev 4500 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
/****/package in.shop2020.warehouse.persistence;import java.util.List;import org.apache.ibatis.annotations.Param;/*** @author mandeep**/public interface ItemNumberMapper {/*** @param itemNumber* @return*/public Long getItemId(String itemNumber);/*** @param itemNumber* @return*/public List<String> getItemNumbers(Long itemId);/*** @param itemNumber* @param itemId*/public void insertItemNumberMapping(@Param("itemNumber")String itemNumber, @Param("itemId")long itemId);}