package com.minpay.db.table.mapper; import com.minpay.db.table.model.MtEquipmentInf; import com.minpay.db.table.model.MtEquipmentInfExample; import com.startup.minpay.frame.jdbc.IMINMybatisEntityMapper; import java.util.List; import org.apache.ibatis.annotations.Param; public interface MtEquipmentInfMapper extends IMINMybatisEntityMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_equipment_inf * * @mbggenerated */ int countByExample(MtEquipmentInfExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_equipment_inf * * @mbggenerated */ int deleteByExample(MtEquipmentInfExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_equipment_inf * * @mbggenerated */ int deleteByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_equipment_inf * * @mbggenerated */ int insert(MtEquipmentInf record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_equipment_inf * * @mbggenerated */ int insertSelective(MtEquipmentInf record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_equipment_inf * * @mbggenerated */ List selectByExample(MtEquipmentInfExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_equipment_inf * * @mbggenerated */ MtEquipmentInf selectByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_equipment_inf * * @mbggenerated */ int updateByExampleSelective(@Param("record") MtEquipmentInf record, @Param("example") MtEquipmentInfExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_equipment_inf * * @mbggenerated */ int updateByExample(@Param("record") MtEquipmentInf record, @Param("example") MtEquipmentInfExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_equipment_inf * * @mbggenerated */ int updateByPrimaryKeySelective(MtEquipmentInf record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table mt_equipment_inf * * @mbggenerated */ int updateByPrimaryKey(MtEquipmentInf record); }