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