Subversion Repositories SmartDukaan

Rev

Rev 4500 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4500 Rev 4623
Line 1... Line 1...
1
/**
1
/**
2
 * 
2
 * 
3
 */
3
 */
4
package in.shop2020.warehouse.persistence;
4
package in.shop2020.warehouse.persistence;
5
 
5
 
-
 
6
import java.util.List;
-
 
7
 
6
import org.apache.ibatis.annotations.Param;
8
import org.apache.ibatis.annotations.Param;
7
 
9
 
8
/**
10
/**
9
 * @author mandeep
11
 * @author mandeep
10
 *
12
 *
Line 14... Line 16...
14
     * @param itemNumber
16
     * @param itemNumber
15
     * @return
17
     * @return
16
     */
18
     */
17
    public Long getItemId(String itemNumber);
19
    public Long getItemId(String itemNumber);
18
 
20
 
-
 
21
   /** 
-
 
22
    * @param itemNumber
-
 
23
    * @return
-
 
24
    */
-
 
25
   public List<String> getItemNumbers(Long itemId);
-
 
26
 
19
    /**
27
    /**
20
     * @param itemNumber
28
     * @param itemNumber
21
     * @param itemId
29
     * @param itemId
22
     */
30
     */
23
    public void insertItemNumberMapping(@Param("itemNumber")String itemNumber, @Param("itemId")long itemId);
31
    public void insertItemNumberMapping(@Param("itemNumber")String itemNumber, @Param("itemId")long itemId);