Subversion Repositories SmartDukaan

Rev

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

Rev 5185 Rev 5361
Line 3... Line 3...
3
import in.shop2020.warehouse.ScanType;
3
import in.shop2020.warehouse.ScanType;
4
import in.shop2020.warehouse.domain.InventoryItem;
4
import in.shop2020.warehouse.domain.InventoryItem;
5
 
5
 
6
import java.util.List;
6
import java.util.List;
7
 
7
 
-
 
8
import org.apache.ibatis.annotations.Param;
-
 
9
 
8
 
10
 
9
public interface InventoryItemMapper {
11
public interface InventoryItemMapper {
10
 
12
 
11
    /**
13
    /**
12
     * @param inventoryItem
14
     * @param inventoryItem
Line 35... Line 37...
35
 
37
 
36
    /**
38
    /**
37
     * @param inventoryItem
39
     * @param inventoryItem
38
     */
40
     */
39
    void update(InventoryItem inventoryItem);
41
    void update(InventoryItem inventoryItem);
-
 
42
 
-
 
43
    /**
-
 
44
     * @param itemId
-
 
45
     * @param warehouseId
-
 
46
     * @return
-
 
47
     */
-
 
48
    InventoryItem getNonSerializedInventoryItem(@Param("itemId")long itemId, @Param("warehouseId")long warehouseId);
40
}
49
}