|
@@ -0,0 +1,64 @@
|
|
|
|
+package com.gyee.frame.mapper.auto;
|
|
|
|
+
|
|
|
|
+import com.gyee.frame.model.auto.PhotovoltaicStandardPoint;
|
|
|
|
+import com.gyee.frame.model.auto.PhotovoltaicStandardPointExample;
|
|
|
|
+import java.util.List;
|
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
+
|
|
|
|
+public interface PhotovoltaicStandardPointMapper {
|
|
|
|
+ /**
|
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
|
+ * This method corresponds to the database table PHOTOVOLTAICSTANDARDPOINT
|
|
|
|
+ *
|
|
|
|
+ * @mbg.generated
|
|
|
|
+ */
|
|
|
|
+ long countByExample(PhotovoltaicStandardPointExample example);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
|
+ * This method corresponds to the database table PHOTOVOLTAICSTANDARDPOINT
|
|
|
|
+ *
|
|
|
|
+ * @mbg.generated
|
|
|
|
+ */
|
|
|
|
+ int deleteByExample(PhotovoltaicStandardPointExample example);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
|
+ * This method corresponds to the database table PHOTOVOLTAICSTANDARDPOINT
|
|
|
|
+ *
|
|
|
|
+ * @mbg.generated
|
|
|
|
+ */
|
|
|
|
+ int insert(PhotovoltaicStandardPoint record);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
|
+ * This method corresponds to the database table PHOTOVOLTAICSTANDARDPOINT
|
|
|
|
+ *
|
|
|
|
+ * @mbg.generated
|
|
|
|
+ */
|
|
|
|
+ int insertSelective(PhotovoltaicStandardPoint record);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
|
+ * This method corresponds to the database table PHOTOVOLTAICSTANDARDPOINT
|
|
|
|
+ *
|
|
|
|
+ * @mbg.generated
|
|
|
|
+ */
|
|
|
|
+ List<PhotovoltaicStandardPoint> selectByExample(PhotovoltaicStandardPointExample example);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
|
+ * This method corresponds to the database table PHOTOVOLTAICSTANDARDPOINT
|
|
|
|
+ *
|
|
|
|
+ * @mbg.generated
|
|
|
|
+ */
|
|
|
|
+ int updateByExampleSelective(@Param("record") PhotovoltaicStandardPoint record, @Param("example") PhotovoltaicStandardPointExample example);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * This method was generated by MyBatis Generator.
|
|
|
|
+ * This method corresponds to the database table PHOTOVOLTAICSTANDARDPOINT
|
|
|
|
+ *
|
|
|
|
+ * @mbg.generated
|
|
|
|
+ */
|
|
|
|
+ int updateByExample(@Param("record") PhotovoltaicStandardPoint record, @Param("example") PhotovoltaicStandardPointExample example);
|
|
|
|
+}
|