Subversion Repositories SmartDukaan

Rev

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

Rev 5361 Rev 5372
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 in.shop2020.warehouse.DetailedPurchaseScan;
6
import in.shop2020.warehouse.ScanType;
7
import in.shop2020.warehouse.ScanType;
7
import in.shop2020.warehouse.domain.Scan;
8
import in.shop2020.warehouse.domain.Scan;
8
 
9
 
-
 
10
import java.util.Date;
9
import java.util.List;
11
import java.util.List;
10
 
12
 
11
import org.apache.ibatis.annotations.Param;
13
import org.apache.ibatis.annotations.Param;
12
 
14
 
13
/**
15
/**
Line 31... Line 33...
31
    /**
33
    /**
32
     * @param orderId
34
     * @param orderId
33
     * @return
35
     * @return
34
     */
36
     */
35
    List<Scan> getScansFromOrderId(long orderId);
37
    List<Scan> getScansFromOrderId(long orderId);
-
 
38
 
-
 
39
    /**
-
 
40
     * @param startDate
-
 
41
     * @param endDate
-
 
42
     * @return
-
 
43
     */
-
 
44
    List<DetailedPurchaseScan> getPurchaseScans(@Param("startDate")Date startDate, @Param("endDate")Date endDate);
36
}
45
}