Bladeren bron

初检增加字段

gaodandan 5 jaren geleden
bovenliggende
commit
c231ca4328

+ 131 - 66
src/main/java/com/chinaitop/depot/storage/mapper/StorageQualitycheckMapper.java

@@ -1,67 +1,132 @@
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);
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 Wed Jun 03 18:16:34 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 Wed Jun 03 18:16:34 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 Wed Jun 03 18:16:34 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 Wed Jun 03 18:16:34 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 Wed Jun 03 18:16:34 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 Wed Jun 03 18:16:34 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 Wed Jun 03 18:16:34 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 Wed Jun 03 18:16:34 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 Wed Jun 03 18:16:34 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 Wed Jun 03 18:16:34 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 Wed Jun 03 18:16:34 CST 2020
96
+     */
97
+    int updateByPrimaryKey(StorageQualitycheck record);
98
+    
99
+    
100
+    
101
+    /**
102
+     * @param qualitycheck
103
+     * @return
104
+     */
105
+    List<StorageQualitycheck> getHouseIdList(StorageQualitycheck qualitycheck);
106
+
107
+    /**
108
+     * @param qualitycheck
109
+     * @return
110
+     */
111
+    List<StorageQualitycheck> getWareHouseIdList(
112
+            StorageQualitycheck qualitycheck);
113
+    List<StorageQualitycheck> getThirdCheckList(StorageQualitycheck qualitycheck);
114
+    List<StorageQualitycheck> getQualitycheckListByFoodbasicinfoCheck(StorageQualitycheck qualitycheck);
115
+    StorageQualitycheck queryPrimaryKey(Integer id);
116
+    List<StorageQualitycheck> queryByExample(StorageQualitycheck example);
117
+    List<Map<String,Object>> getStoreQualityList(Integer orgId);
118
+
119
+    
120
+    List<Map<String,Object>> getTrdStoreQualityList();
121
+	List<StorageQualitycheck> getDataByZJId(Map<String, Object> paramMap);
122
+
123
+    List<StorageQualitycheck> queryByExampleData(StorageQualitycheck example);
124
+
125
+    List<StorageQualitycheck> queryByQualitycheckusiness(StorageQualitycheck qualityCheckExample);
126
+
127
+    List<Map<String,Object>> getAllQualityMain(Map<String, Object> paramMap);
128
+
129
+    List<Map<String, Object>> getAllQualityInfo(Map<String, Object> paramMap);
130
+
131
+    List<Map<String, Object>> getAllFoodStocks(Map<String, Object> paramMap);
67 132
 }

File diff suppressed because it is too large
+ 1996 - 1796
src/main/java/com/chinaitop/depot/storage/mapper/StorageQualitycheckMapper.xml


File diff suppressed because it is too large
+ 3109 - 1662
src/main/java/com/chinaitop/depot/storage/model/StorageQualitycheck.java


File diff suppressed because it is too large
+ 6592 - 5968
src/main/java/com/chinaitop/depot/storage/model/StorageQualitycheckExample.java