|
@@ -0,0 +1,96 @@
|
|
|
+package com.gyee.frame.mapper.auto;
|
|
|
+
|
|
|
+import com.gyee.frame.model.auto.Misdailydata;
|
|
|
+import com.gyee.frame.model.auto.MisdailydataExample;
|
|
|
+import java.util.List;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
+
|
|
|
+public interface MisdailydataMapper {
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table MISDAILYDATA
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ long countByExample(MisdailydataExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table MISDAILYDATA
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int deleteByExample(MisdailydataExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table MISDAILYDATA
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int deleteByPrimaryKey(String id);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table MISDAILYDATA
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int insert(Misdailydata record);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table MISDAILYDATA
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int insertSelective(Misdailydata record);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table MISDAILYDATA
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ List<Misdailydata> selectByExample(MisdailydataExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table MISDAILYDATA
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ Misdailydata selectByPrimaryKey(String id);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table MISDAILYDATA
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int updateByExampleSelective(@Param("record") Misdailydata record, @Param("example") MisdailydataExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table MISDAILYDATA
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int updateByExample(@Param("record") Misdailydata record, @Param("example") MisdailydataExample example);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table MISDAILYDATA
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int updateByPrimaryKeySelective(Misdailydata record);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
+ * This method corresponds to the database table MISDAILYDATA
|
|
|
+ *
|
|
|
+ * @mbg.generated
|
|
|
+ */
|
|
|
+ int updateByPrimaryKey(Misdailydata record);
|
|
|
+}
|