ParkFreeBerthMapper.java 937 Bytes
package com.zteits.job.mapper;

import com.zteits.job.domain.ParkFreeBerth;
import com.zteits.job.domain.ParkFreeBerthExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;

public interface ParkFreeBerthMapper {
    long countByExample(ParkFreeBerthExample example);

    int deleteByExample(ParkFreeBerthExample example);

    int deleteByPrimaryKey(Long id);

    int insert(ParkFreeBerth record);

    int insertSelective(ParkFreeBerth record);

    List<ParkFreeBerth> selectByExample(ParkFreeBerthExample example);

    ParkFreeBerth selectByPrimaryKey(Long id);

    int updateByExampleSelective(@Param("record") ParkFreeBerth record, @Param("example") ParkFreeBerthExample example);

    int updateByExample(@Param("record") ParkFreeBerth record, @Param("example") ParkFreeBerthExample example);

    int updateByPrimaryKeySelective(ParkFreeBerth record);

    int updateByPrimaryKey(ParkFreeBerth record);
}