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