TimeCalibrationRecordMapper.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. package com.js.kbt.mapper;
  2. import com.js.kbt.model.TimeCalibrationRecord;
  3. import com.js.kbt.model.TimeCalibrationRecordExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface TimeCalibrationRecordMapper {
  7. /**
  8. * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record
  9. * @mbg.generated Thu Nov 28 14:50:56 CST 2019
  10. */
  11. long countByExample(TimeCalibrationRecordExample example);
  12. /**
  13. * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record
  14. * @mbg.generated Thu Nov 28 14:50:56 CST 2019
  15. */
  16. int deleteByExample(TimeCalibrationRecordExample example);
  17. /**
  18. * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record
  19. * @mbg.generated Thu Nov 28 14:50:56 CST 2019
  20. */
  21. int deleteByPrimaryKey(Integer id);
  22. /**
  23. * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record
  24. * @mbg.generated Thu Nov 28 14:50:56 CST 2019
  25. */
  26. int insert(TimeCalibrationRecord record);
  27. /**
  28. * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record
  29. * @mbg.generated Thu Nov 28 14:50:56 CST 2019
  30. */
  31. int insertSelective(TimeCalibrationRecord record);
  32. /**
  33. * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record
  34. * @mbg.generated Thu Nov 28 14:50:56 CST 2019
  35. */
  36. List<TimeCalibrationRecord> selectByExample(TimeCalibrationRecordExample example);
  37. /**
  38. * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record
  39. * @mbg.generated Thu Nov 28 14:50:56 CST 2019
  40. */
  41. TimeCalibrationRecord selectByPrimaryKey(Integer id);
  42. /**
  43. * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record
  44. * @mbg.generated Thu Nov 28 14:50:56 CST 2019
  45. */
  46. int updateByExampleSelective(@Param("record") TimeCalibrationRecord record,
  47. @Param("example") TimeCalibrationRecordExample example);
  48. /**
  49. * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record
  50. * @mbg.generated Thu Nov 28 14:50:56 CST 2019
  51. */
  52. int updateByExample(@Param("record") TimeCalibrationRecord record,
  53. @Param("example") TimeCalibrationRecordExample example);
  54. /**
  55. * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record
  56. * @mbg.generated Thu Nov 28 14:50:56 CST 2019
  57. */
  58. int updateByPrimaryKeySelective(TimeCalibrationRecord record);
  59. /**
  60. * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record
  61. * @mbg.generated Thu Nov 28 14:50:56 CST 2019
  62. */
  63. int updateByPrimaryKey(TimeCalibrationRecord record);
  64. List<TimeCalibrationRecord> selectCountByToday(@Param("equipmentNo")String equipmentNo);
  65. }