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