hefeng 6 anni fa
parent
commit
5bcc845d05

+ 1 - 66
src/main/java/com/chinaitop/depot/customer/mapper/BusinessCustomerMapper.java

@@ -6,91 +6,26 @@ import java.util.List;
6 6
 import org.apache.ibatis.annotations.Param;
7 7
 
8 8
 public interface BusinessCustomerMapper {
9
-    /**
10
-     * This method was generated by MyBatis Generator.
11
-     * This method corresponds to the database table business_customer
12
-     *
13
-     * @mbggenerated Wed Oct 25 11:44:58 CST 2017
14
-     */
9
+    
15 10
     int countByExample(BusinessCustomerExample example);
16 11
 
17
-    /**
18
-     * This method was generated by MyBatis Generator.
19
-     * This method corresponds to the database table business_customer
20
-     *
21
-     * @mbggenerated Wed Oct 25 11:44:58 CST 2017
22
-     */
23 12
     int deleteByExample(BusinessCustomerExample example);
24 13
 
25
-    /**
26
-     * This method was generated by MyBatis Generator.
27
-     * This method corresponds to the database table business_customer
28
-     *
29
-     * @mbggenerated Wed Oct 25 11:44:58 CST 2017
30
-     */
31 14
     int deleteByPrimaryKey(Integer id);
32 15
 
33
-    /**
34
-     * This method was generated by MyBatis Generator.
35
-     * This method corresponds to the database table business_customer
36
-     *
37
-     * @mbggenerated Wed Oct 25 11:44:58 CST 2017
38
-     */
39 16
     int insert(BusinessCustomer record);
40 17
 
41
-    /**
42
-     * This method was generated by MyBatis Generator.
43
-     * This method corresponds to the database table business_customer
44
-     *
45
-     * @mbggenerated Wed Oct 25 11:44:58 CST 2017
46
-     */
47 18
     int insertSelective(BusinessCustomer record);
48 19
 
49
-    /**
50
-     * This method was generated by MyBatis Generator.
51
-     * This method corresponds to the database table business_customer
52
-     *
53
-     * @mbggenerated Wed Oct 25 11:44:58 CST 2017
54
-     */
55 20
     List<BusinessCustomer> selectByExample(BusinessCustomerExample example);
56 21
 
57
-    /**
58
-     * This method was generated by MyBatis Generator.
59
-     * This method corresponds to the database table business_customer
60
-     *
61
-     * @mbggenerated Wed Oct 25 11:44:58 CST 2017
62
-     */
63 22
     BusinessCustomer selectByPrimaryKey(Integer id);
64 23
 
65
-    /**
66
-     * This method was generated by MyBatis Generator.
67
-     * This method corresponds to the database table business_customer
68
-     *
69
-     * @mbggenerated Wed Oct 25 11:44:58 CST 2017
70
-     */
71 24
     int updateByExampleSelective(@Param("record") BusinessCustomer record, @Param("example") BusinessCustomerExample example);
72 25
 
73
-    /**
74
-     * This method was generated by MyBatis Generator.
75
-     * This method corresponds to the database table business_customer
76
-     *
77
-     * @mbggenerated Wed Oct 25 11:44:58 CST 2017
78
-     */
79 26
     int updateByExample(@Param("record") BusinessCustomer record, @Param("example") BusinessCustomerExample example);
80 27
 
81
-    /**
82
-     * This method was generated by MyBatis Generator.
83
-     * This method corresponds to the database table business_customer
84
-     *
85
-     * @mbggenerated Wed Oct 25 11:44:58 CST 2017
86
-     */
87 28
     int updateByPrimaryKeySelective(BusinessCustomer record);
88 29
 
89
-    /**
90
-     * This method was generated by MyBatis Generator.
91
-     * This method corresponds to the database table business_customer
92
-     *
93
-     * @mbggenerated Wed Oct 25 11:44:58 CST 2017
94
-     */
95 30
     int updateByPrimaryKey(BusinessCustomer record);
96 31
 }