ParkingLotMapper.java
893 Bytes
package com.zteits.job.mapper;
import com.zteits.job.domain.ParkingLot;
import com.zteits.job.domain.ParkingLotExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface ParkingLotMapper {
long countByExample(ParkingLotExample example);
int deleteByExample(ParkingLotExample example);
int deleteByPrimaryKey(Long plId);
int insert(ParkingLot record);
int insertSelective(ParkingLot record);
List<ParkingLot> selectByExample(ParkingLotExample example);
ParkingLot selectByPrimaryKey(Long plId);
int updateByExampleSelective(@Param("record") ParkingLot record, @Param("example") ParkingLotExample example);
int updateByExample(@Param("record") ParkingLot record, @Param("example") ParkingLotExample example);
int updateByPrimaryKeySelective(ParkingLot record);
int updateByPrimaryKey(ParkingLot record);
}