|
|
@@ -1,71 +1,135 @@
|
|
1
|
|
-package com.chinaitop.depot.storage.mapper;
|
|
2
|
|
-
|
|
3
|
|
-import com.chinaitop.depot.storage.model.StorageQualitycheck;
|
|
4
|
|
-import com.chinaitop.depot.storage.model.StorageQualitycheckExample;
|
|
5
|
|
-import org.apache.ibatis.annotations.Param;
|
|
6
|
|
-import org.springframework.stereotype.Repository;
|
|
7
|
|
-
|
|
8
|
|
-import java.util.List;
|
|
9
|
|
-import java.util.Map;
|
|
10
|
|
-
|
|
11
|
|
-@Repository
|
|
12
|
|
-public interface StorageQualitycheckMapper {
|
|
13
|
|
- int countByExample(StorageQualitycheckExample example);
|
|
14
|
|
-
|
|
15
|
|
- int deleteByExample(StorageQualitycheckExample example);
|
|
16
|
|
-
|
|
17
|
|
- int deleteByPrimaryKey(Integer id);
|
|
18
|
|
-
|
|
19
|
|
- int insert(StorageQualitycheck record);
|
|
20
|
|
-
|
|
21
|
|
- int insertSelective(StorageQualitycheck record);
|
|
22
|
|
-
|
|
23
|
|
- List<StorageQualitycheck> selectByExample(StorageQualitycheckExample example);
|
|
24
|
|
-
|
|
25
|
|
- StorageQualitycheck selectByPrimaryKey(Integer id);
|
|
26
|
|
-
|
|
27
|
|
-
|
|
28
|
|
- int updateByExampleSelective(@Param("record") StorageQualitycheck record, @Param("example") StorageQualitycheckExample example);
|
|
29
|
|
-
|
|
30
|
|
- int updateByExample(@Param("record") StorageQualitycheck record, @Param("example") StorageQualitycheckExample example);
|
|
31
|
|
-
|
|
32
|
|
- int updateByPrimaryKeySelective(StorageQualitycheck record);
|
|
33
|
|
-
|
|
34
|
|
- int updateByPrimaryKey(StorageQualitycheck record);
|
|
35
|
|
-
|
|
36
|
|
- /**
|
|
37
|
|
- * @param qualitycheck
|
|
38
|
|
- * @return
|
|
39
|
|
- */
|
|
40
|
|
- List<StorageQualitycheck> getHouseIdList(StorageQualitycheck qualitycheck);
|
|
41
|
|
-
|
|
42
|
|
- /**
|
|
43
|
|
- * @param qualitycheck
|
|
44
|
|
- * @return
|
|
45
|
|
- */
|
|
46
|
|
- List<StorageQualitycheck> getWareHouseIdList(
|
|
47
|
|
- StorageQualitycheck qualitycheck);
|
|
48
|
|
- List<StorageQualitycheck> getThirdCheckList(StorageQualitycheck qualitycheck);
|
|
49
|
|
- List<StorageQualitycheck> getQualitycheckListByFoodbasicinfoCheck(StorageQualitycheck qualitycheck);
|
|
50
|
|
- StorageQualitycheck queryPrimaryKey(Integer id);
|
|
51
|
|
- List<StorageQualitycheck> queryByExample(StorageQualitycheck example);
|
|
52
|
|
- List<Map<String,Object>> getStoreQualityList(Integer orgId);
|
|
53
|
|
-
|
|
54
|
|
-
|
|
55
|
|
- List<Map<String,Object>> getTrdStoreQualityList();
|
|
56
|
|
- List<StorageQualitycheck> getDataByZJId(Map<String, Object> paramMap);
|
|
57
|
|
-
|
|
58
|
|
- List<StorageQualitycheck> queryByExampleData(StorageQualitycheck example);
|
|
59
|
|
-
|
|
60
|
|
- List<StorageQualitycheck> queryByQualitycheckusiness(StorageQualitycheck qualityCheckExample);
|
|
61
|
|
-
|
|
62
|
|
- List<Map<String,Object>> getAllQualityMain(Map<String, Object> paramMap);
|
|
63
|
|
-
|
|
64
|
|
- List<Map<String, Object>> getAllQualityInfo(Map<String, Object> paramMap);
|
|
65
|
|
-
|
|
66
|
|
- List<Map<String, Object>> getAllFoodStocks(Map<String, Object> paramMap);
|
|
67
|
|
-
|
|
68
|
|
- List<StorageQualitycheck> queryByQualitycheckusinessTank(StorageQualitycheck qualityCheckExample);
|
|
69
|
|
-
|
|
70
|
|
- List<StorageQualitycheck> queryByExampleDataTank(StorageQualitycheck example);
|
|
|
1
|
+package com.chinaitop.depot.storage.mapper;
|
|
|
2
|
+
|
|
|
3
|
+import com.chinaitop.depot.storage.model.StorageQualitycheck;
|
|
|
4
|
+import com.chinaitop.depot.storage.model.StorageQualitycheckExample;
|
|
|
5
|
+import java.util.List;
|
|
|
6
|
+import java.util.Map;
|
|
|
7
|
+
|
|
|
8
|
+import org.apache.ibatis.annotations.Param;
|
|
|
9
|
+
|
|
|
10
|
+public interface StorageQualitycheckMapper {
|
|
|
11
|
+ /**
|
|
|
12
|
+ * This method was generated by MyBatis Generator.
|
|
|
13
|
+ * This method corresponds to the database table storage_qualitycheck
|
|
|
14
|
+ *
|
|
|
15
|
+ * @mbggenerated Mon Jun 22 17:29:08 CST 2020
|
|
|
16
|
+ */
|
|
|
17
|
+ int countByExample(StorageQualitycheckExample example);
|
|
|
18
|
+
|
|
|
19
|
+ /**
|
|
|
20
|
+ * This method was generated by MyBatis Generator.
|
|
|
21
|
+ * This method corresponds to the database table storage_qualitycheck
|
|
|
22
|
+ *
|
|
|
23
|
+ * @mbggenerated Mon Jun 22 17:29:08 CST 2020
|
|
|
24
|
+ */
|
|
|
25
|
+ int deleteByExample(StorageQualitycheckExample example);
|
|
|
26
|
+
|
|
|
27
|
+ /**
|
|
|
28
|
+ * This method was generated by MyBatis Generator.
|
|
|
29
|
+ * This method corresponds to the database table storage_qualitycheck
|
|
|
30
|
+ *
|
|
|
31
|
+ * @mbggenerated Mon Jun 22 17:29:08 CST 2020
|
|
|
32
|
+ */
|
|
|
33
|
+ int deleteByPrimaryKey(Integer id);
|
|
|
34
|
+
|
|
|
35
|
+ /**
|
|
|
36
|
+ * This method was generated by MyBatis Generator.
|
|
|
37
|
+ * This method corresponds to the database table storage_qualitycheck
|
|
|
38
|
+ *
|
|
|
39
|
+ * @mbggenerated Mon Jun 22 17:29:08 CST 2020
|
|
|
40
|
+ */
|
|
|
41
|
+ int insert(StorageQualitycheck record);
|
|
|
42
|
+
|
|
|
43
|
+ /**
|
|
|
44
|
+ * This method was generated by MyBatis Generator.
|
|
|
45
|
+ * This method corresponds to the database table storage_qualitycheck
|
|
|
46
|
+ *
|
|
|
47
|
+ * @mbggenerated Mon Jun 22 17:29:08 CST 2020
|
|
|
48
|
+ */
|
|
|
49
|
+ int insertSelective(StorageQualitycheck record);
|
|
|
50
|
+
|
|
|
51
|
+ /**
|
|
|
52
|
+ * This method was generated by MyBatis Generator.
|
|
|
53
|
+ * This method corresponds to the database table storage_qualitycheck
|
|
|
54
|
+ *
|
|
|
55
|
+ * @mbggenerated Mon Jun 22 17:29:08 CST 2020
|
|
|
56
|
+ */
|
|
|
57
|
+ List<StorageQualitycheck> selectByExample(StorageQualitycheckExample example);
|
|
|
58
|
+
|
|
|
59
|
+ /**
|
|
|
60
|
+ * This method was generated by MyBatis Generator.
|
|
|
61
|
+ * This method corresponds to the database table storage_qualitycheck
|
|
|
62
|
+ *
|
|
|
63
|
+ * @mbggenerated Mon Jun 22 17:29:08 CST 2020
|
|
|
64
|
+ */
|
|
|
65
|
+ StorageQualitycheck selectByPrimaryKey(Integer id);
|
|
|
66
|
+
|
|
|
67
|
+ /**
|
|
|
68
|
+ * This method was generated by MyBatis Generator.
|
|
|
69
|
+ * This method corresponds to the database table storage_qualitycheck
|
|
|
70
|
+ *
|
|
|
71
|
+ * @mbggenerated Mon Jun 22 17:29:08 CST 2020
|
|
|
72
|
+ */
|
|
|
73
|
+ int updateByExampleSelective(@Param("record") StorageQualitycheck record, @Param("example") StorageQualitycheckExample example);
|
|
|
74
|
+
|
|
|
75
|
+ /**
|
|
|
76
|
+ * This method was generated by MyBatis Generator.
|
|
|
77
|
+ * This method corresponds to the database table storage_qualitycheck
|
|
|
78
|
+ *
|
|
|
79
|
+ * @mbggenerated Mon Jun 22 17:29:08 CST 2020
|
|
|
80
|
+ */
|
|
|
81
|
+ int updateByExample(@Param("record") StorageQualitycheck record, @Param("example") StorageQualitycheckExample example);
|
|
|
82
|
+
|
|
|
83
|
+ /**
|
|
|
84
|
+ * This method was generated by MyBatis Generator.
|
|
|
85
|
+ * This method corresponds to the database table storage_qualitycheck
|
|
|
86
|
+ *
|
|
|
87
|
+ * @mbggenerated Mon Jun 22 17:29:08 CST 2020
|
|
|
88
|
+ */
|
|
|
89
|
+ int updateByPrimaryKeySelective(StorageQualitycheck record);
|
|
|
90
|
+
|
|
|
91
|
+ /**
|
|
|
92
|
+ * This method was generated by MyBatis Generator.
|
|
|
93
|
+ * This method corresponds to the database table storage_qualitycheck
|
|
|
94
|
+ *
|
|
|
95
|
+ * @mbggenerated Mon Jun 22 17:29:08 CST 2020
|
|
|
96
|
+ */
|
|
|
97
|
+ int updateByPrimaryKey(StorageQualitycheck record);
|
|
|
98
|
+
|
|
|
99
|
+
|
|
|
100
|
+ /**
|
|
|
101
|
+ * @param qualitycheck
|
|
|
102
|
+ * @return
|
|
|
103
|
+ */
|
|
|
104
|
+ List<StorageQualitycheck> getHouseIdList(StorageQualitycheck qualitycheck);
|
|
|
105
|
+
|
|
|
106
|
+ /**
|
|
|
107
|
+ * @param qualitycheck
|
|
|
108
|
+ * @return
|
|
|
109
|
+ */
|
|
|
110
|
+ List<StorageQualitycheck> getWareHouseIdList(
|
|
|
111
|
+ StorageQualitycheck qualitycheck);
|
|
|
112
|
+ List<StorageQualitycheck> getThirdCheckList(StorageQualitycheck qualitycheck);
|
|
|
113
|
+ List<StorageQualitycheck> getQualitycheckListByFoodbasicinfoCheck(StorageQualitycheck qualitycheck);
|
|
|
114
|
+ StorageQualitycheck queryPrimaryKey(Integer id);
|
|
|
115
|
+ List<StorageQualitycheck> queryByExample(StorageQualitycheck example);
|
|
|
116
|
+ List<Map<String,Object>> getStoreQualityList(Integer orgId);
|
|
|
117
|
+
|
|
|
118
|
+
|
|
|
119
|
+ List<Map<String,Object>> getTrdStoreQualityList();
|
|
|
120
|
+ List<StorageQualitycheck> getDataByZJId(Map<String, Object> paramMap);
|
|
|
121
|
+
|
|
|
122
|
+ List<StorageQualitycheck> queryByExampleData(StorageQualitycheck example);
|
|
|
123
|
+
|
|
|
124
|
+ List<StorageQualitycheck> queryByQualitycheckusiness(StorageQualitycheck qualityCheckExample);
|
|
|
125
|
+
|
|
|
126
|
+ List<Map<String,Object>> getAllQualityMain(Map<String, Object> paramMap);
|
|
|
127
|
+
|
|
|
128
|
+ List<Map<String, Object>> getAllQualityInfo(Map<String, Object> paramMap);
|
|
|
129
|
+
|
|
|
130
|
+ List<Map<String, Object>> getAllFoodStocks(Map<String, Object> paramMap);
|
|
|
131
|
+
|
|
|
132
|
+ List<StorageQualitycheck> queryByQualitycheckusinessTank(StorageQualitycheck qualityCheckExample);
|
|
|
133
|
+
|
|
|
134
|
+ List<StorageQualitycheck> queryByExampleDataTank(StorageQualitycheck example);
|
|
71
|
135
|
}
|