TrafficMapper.java 1.16 KB
package com.viontech.fanxing.query.mapper;

import com.viontech.fanxing.commons.base.BaseMapper;
import com.viontech.fanxing.commons.model.Traffic;
import com.viontech.fanxing.commons.model.TrafficExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;

public interface TrafficMapper extends BaseMapper {
    int countByExample(TrafficExample example);

    int deleteByExample(TrafficExample example);

    int deleteByPrimaryKey(Long id);

    int insert(Traffic record);

    int insertSelective(Traffic record);

    List<Traffic> selectByExampleWithBLOBs(TrafficExample example);

    List<Traffic> selectByExample(TrafficExample example);

    Traffic selectByPrimaryKey(Long id);

    int updateByExampleSelective(@Param("record") Traffic record, @Param("example") TrafficExample example);

    int updateByExampleWithBLOBs(@Param("record") Traffic record, @Param("example") TrafficExample example);

    int updateByExample(@Param("record") Traffic record, @Param("example") TrafficExample example);

    int updateByPrimaryKeySelective(Traffic record);

    int updateByPrimaryKeyWithBLOBs(Traffic record);

    int updateByPrimaryKey(Traffic record);
}