Subversion Repositories SmartDukaan

Rev

Rev 4623 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
4500 mandeep.dh 1
/**
2
 * 
3
 */
4
package in.shop2020.warehouse.persistence;
5
 
6
import org.apache.ibatis.annotations.Param;
7
 
8
/**
9
 * @author mandeep
10
 *
11
 */
12
public interface ItemNumberMapper {
13
    /**
14
     * @param itemNumber
15
     * @return
16
     */
17
    public Long getItemId(String itemNumber);
18
 
19
    /**
20
     * @param itemNumber
21
     * @param itemId
22
     */
23
    public void insertItemNumberMapping(@Param("itemNumber")String itemNumber, @Param("itemId")long itemId);
24
}