123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- package com.js.kbt.mapper;
- import com.js.kbt.model.MouldHoding;
- import com.js.kbt.model.MouldHodingExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface MouldHodingMapper {
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table mould_hoding
- *
- * @mbg.generated Tue Oct 08 17:17:36 CST 2019
- */
- long countByExample(MouldHodingExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table mould_hoding
- *
- * @mbg.generated Tue Oct 08 17:17:36 CST 2019
- */
- int deleteByExample(MouldHodingExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table mould_hoding
- *
- * @mbg.generated Tue Oct 08 17:17:36 CST 2019
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table mould_hoding
- *
- * @mbg.generated Tue Oct 08 17:17:36 CST 2019
- */
- int insert(MouldHoding record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table mould_hoding
- *
- * @mbg.generated Tue Oct 08 17:17:36 CST 2019
- */
- int insertSelective(MouldHoding record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table mould_hoding
- *
- * @mbg.generated Tue Oct 08 17:17:36 CST 2019
- */
- List<MouldHoding> selectByExample(MouldHodingExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table mould_hoding
- *
- * @mbg.generated Tue Oct 08 17:17:36 CST 2019
- */
- MouldHoding selectByPrimaryKey(Integer id);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table mould_hoding
- *
- * @mbg.generated Tue Oct 08 17:17:36 CST 2019
- */
- int updateByExampleSelective(@Param("record") MouldHoding record, @Param("example") MouldHodingExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table mould_hoding
- *
- * @mbg.generated Tue Oct 08 17:17:36 CST 2019
- */
- int updateByExample(@Param("record") MouldHoding record, @Param("example") MouldHodingExample example);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table mould_hoding
- *
- * @mbg.generated Tue Oct 08 17:17:36 CST 2019
- */
- int updateByPrimaryKeySelective(MouldHoding record);
- /**
- * This method was generated by MyBatis Generator.
- * This method corresponds to the database table mould_hoding
- *
- * @mbg.generated Tue Oct 08 17:17:36 CST 2019
- */
- int updateByPrimaryKey(MouldHoding record);
- }
|