package com.topsail.influxdb.mapper; import com.topsail.influxdb.pojo.DeviceUser; import com.topsail.influxdb.pojo.DeviceUserExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface DeviceUserMapper { long countByExample(DeviceUserExample example); int deleteByExample(DeviceUserExample example); int insert(DeviceUser record); int insertSelective(DeviceUser record); List selectByExample(DeviceUserExample example); int updateByExampleSelective(@Param("record") DeviceUser record, @Param("example") DeviceUserExample example); int updateByExample(@Param("record") DeviceUser record, @Param("example") DeviceUserExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table device_user * * @mbg.generated * @project https://github.com/itfsw/mybatis-generator-plugin */ int batchInsert(@Param("list") List list); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table device_user * * @mbg.generated * @project https://github.com/itfsw/mybatis-generator-plugin */ int batchInsertSelective(@Param("list") List list, @Param("selective") DeviceUser.Column ... selective); }