package com.js.kbt.mapper; import com.js.kbt.model.TimeCalibrationRecord; import com.js.kbt.model.TimeCalibrationRecordExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface TimeCalibrationRecordMapper { /** * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record * @mbg.generated Thu Nov 28 14:50:56 CST 2019 */ long countByExample(TimeCalibrationRecordExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record * @mbg.generated Thu Nov 28 14:50:56 CST 2019 */ int deleteByExample(TimeCalibrationRecordExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record * @mbg.generated Thu Nov 28 14:50:56 CST 2019 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record * @mbg.generated Thu Nov 28 14:50:56 CST 2019 */ int insert(TimeCalibrationRecord record); /** * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record * @mbg.generated Thu Nov 28 14:50:56 CST 2019 */ int insertSelective(TimeCalibrationRecord record); /** * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record * @mbg.generated Thu Nov 28 14:50:56 CST 2019 */ List selectByExample(TimeCalibrationRecordExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record * @mbg.generated Thu Nov 28 14:50:56 CST 2019 */ TimeCalibrationRecord selectByPrimaryKey(Integer id); /** * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record * @mbg.generated Thu Nov 28 14:50:56 CST 2019 */ int updateByExampleSelective(@Param("record") TimeCalibrationRecord record, @Param("example") TimeCalibrationRecordExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record * @mbg.generated Thu Nov 28 14:50:56 CST 2019 */ int updateByExample(@Param("record") TimeCalibrationRecord record, @Param("example") TimeCalibrationRecordExample example); /** * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record * @mbg.generated Thu Nov 28 14:50:56 CST 2019 */ int updateByPrimaryKeySelective(TimeCalibrationRecord record); /** * This method was generated by MyBatis Generator. This method corresponds to the database table time_calibration_record * @mbg.generated Thu Nov 28 14:50:56 CST 2019 */ int updateByPrimaryKey(TimeCalibrationRecord record); List selectCountByToday(@Param("equipmentNo")String equipmentNo); }