...
|
...
|
@@ -23,6 +23,8 @@ public interface ProductMapper { |
|
|
@Param("midSortId") Integer midSortId,
|
|
|
@Param("brandId") Integer brandId,
|
|
|
@Param("shelveStatus") Integer shelveStatus,
|
|
|
@Param("storageId") Integer storageId,
|
|
|
@Param("productCode") String productCode,
|
|
|
@Param("start") Integer start,
|
|
|
@Param("rows") Integer rows);
|
|
|
|
...
|
...
|
@@ -31,7 +33,9 @@ public interface ProductMapper { |
|
|
@Param("maxSortId") Integer maxSortId,
|
|
|
@Param("midSortId") Integer midSortId,
|
|
|
@Param("brandId") Integer brandId,
|
|
|
@Param("shelveStatus") Integer shelveStatus);
|
|
|
@Param("shelveStatus") Integer shelveStatus,
|
|
|
@Param("storageId") Integer storageId,
|
|
|
@Param("productCode") String productCode);
|
|
|
|
|
|
List<Product> selectSkuPage(@Param("productCode") String productCode,
|
|
|
@Param("productName") String productName,
|
...
|
...
|
|