|
@@ -0,0 +1,97 @@
|
|
|
+package com.minpay.db.table.mapper;
|
|
|
+
|
|
|
+import com.minpay.db.table.model.VmProEquRel;
|
|
|
+import com.minpay.db.table.model.VmProEquRelExample;
|
|
|
+import com.startup.minpay.frame.jdbc.IMINMybatisEntityMapper;
|
|
|
+import java.util.List;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
+
|
|
|
+public interface VmProEquRelMapper extends IMINMybatisEntityMapper<VmProEquRel, String, VmProEquRelExample> {
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table vm_pro_equ_rel
|
|
|
+ *
|
|
|
+ * @mbggenerated
|
|
|
+ */
|
|
|
+ int countByExample(VmProEquRelExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table vm_pro_equ_rel
|
|
|
+ *
|
|
|
+ * @mbggenerated
|
|
|
+ */
|
|
|
+ int deleteByExample(VmProEquRelExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table vm_pro_equ_rel
|
|
|
+ *
|
|
|
+ * @mbggenerated
|
|
|
+ */
|
|
|
+ int deleteByPrimaryKey(String id);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table vm_pro_equ_rel
|
|
|
+ *
|
|
|
+ * @mbggenerated
|
|
|
+ */
|
|
|
+ int insert(VmProEquRel record);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table vm_pro_equ_rel
|
|
|
+ *
|
|
|
+ * @mbggenerated
|
|
|
+ */
|
|
|
+ int insertSelective(VmProEquRel record);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table vm_pro_equ_rel
|
|
|
+ *
|
|
|
+ * @mbggenerated
|
|
|
+ */
|
|
|
+ List<VmProEquRel> selectByExample(VmProEquRelExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table vm_pro_equ_rel
|
|
|
+ *
|
|
|
+ * @mbggenerated
|
|
|
+ */
|
|
|
+ VmProEquRel selectByPrimaryKey(String id);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table vm_pro_equ_rel
|
|
|
+ *
|
|
|
+ * @mbggenerated
|
|
|
+ */
|
|
|
+ int updateByExampleSelective(@Param("record") VmProEquRel record, @Param("example") VmProEquRelExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table vm_pro_equ_rel
|
|
|
+ *
|
|
|
+ * @mbggenerated
|
|
|
+ */
|
|
|
+ int updateByExample(@Param("record") VmProEquRel record, @Param("example") VmProEquRelExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table vm_pro_equ_rel
|
|
|
+ *
|
|
|
+ * @mbggenerated
|
|
|
+ */
|
|
|
+ int updateByPrimaryKeySelective(VmProEquRel record);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table vm_pro_equ_rel
|
|
|
+ *
|
|
|
+ * @mbggenerated
|
|
|
+ */
|
|
|
+ int updateByPrimaryKey(VmProEquRel record);
|
|
|
+}
|