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