123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- 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<TimeCalibrationRecord> 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<TimeCalibrationRecord> selectCountByToday(@Param("equipmentNo")String equipmentNo);
- }
|