You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

40 lines
1.3 KiB

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<DeviceUser> 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<DeviceUser> 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<DeviceUser> list, @Param("selective") DeviceUser.Column ... selective);
}