MouldHistoryTimeMapper.java 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package com.js.kbt.mapper;
  2. import com.js.kbt.model.MouldHistoryTime;
  3. import com.js.kbt.model.MouldHistoryTimeExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface MouldHistoryTimeMapper {
  7. /**
  8. * This method was generated by MyBatis Generator. This method corresponds to the database table mould_history_time
  9. * @mbg.generated Thu Aug 22 16:38:14 CST 2019
  10. */
  11. long countByExample(MouldHistoryTimeExample example);
  12. /**
  13. * This method was generated by MyBatis Generator. This method corresponds to the database table mould_history_time
  14. * @mbg.generated Thu Aug 22 16:38:14 CST 2019
  15. */
  16. int deleteByExample(MouldHistoryTimeExample example);
  17. /**
  18. * This method was generated by MyBatis Generator. This method corresponds to the database table mould_history_time
  19. * @mbg.generated Thu Aug 22 16:38:14 CST 2019
  20. */
  21. int insert(MouldHistoryTime record);
  22. /**
  23. * This method was generated by MyBatis Generator. This method corresponds to the database table mould_history_time
  24. * @mbg.generated Thu Aug 22 16:38:14 CST 2019
  25. */
  26. int insertSelective(MouldHistoryTime record);
  27. /**
  28. * This method was generated by MyBatis Generator. This method corresponds to the database table mould_history_time
  29. * @mbg.generated Thu Aug 22 16:38:14 CST 2019
  30. */
  31. List<MouldHistoryTime> selectByExample(MouldHistoryTimeExample example);
  32. /**
  33. * This method was generated by MyBatis Generator. This method corresponds to the database table mould_history_time
  34. * @mbg.generated Thu Aug 22 16:38:14 CST 2019
  35. */
  36. int updateByExampleSelective(@Param("record") MouldHistoryTime record,
  37. @Param("example") MouldHistoryTimeExample example);
  38. /**
  39. * This method was generated by MyBatis Generator. This method corresponds to the database table mould_history_time
  40. * @mbg.generated Thu Aug 22 16:38:14 CST 2019
  41. */
  42. int updateByExample(@Param("record") MouldHistoryTime record, @Param("example") MouldHistoryTimeExample example);
  43. }