|
@@ -2,8 +2,10 @@ package com.unissoft.mapper;
|
2
|
2
|
|
3
|
3
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
4
|
4
|
import com.unissoft.model.QuantityQuality;
|
|
5
|
+import org.apache.ibatis.annotations.Mapper;
|
5
|
6
|
import org.apache.ibatis.annotations.Param;
|
6
|
7
|
|
|
8
|
+import javax.annotation.Resource;
|
7
|
9
|
import java.util.List;
|
8
|
10
|
|
9
|
11
|
/**
|
|
@@ -14,6 +16,7 @@ import java.util.List;
|
14
|
16
|
* @author root
|
15
|
17
|
* @since 2021-01-26
|
16
|
18
|
*/
|
|
19
|
+@Mapper
|
17
|
20
|
public interface QuantityQualityMapper extends BaseMapper<QuantityQuality> {
|
18
|
21
|
List<QuantityQuality> groudByType(@Param("depotId") String depotId, @Param("depotType") String depotType);
|
19
|
22
|
}
|