package com.jsowell.pile.mapper; import com.jsowell.pile.domain.ChargeParkingDiscount; import org.apache.ibatis.annotations.Param; import java.util.List; public interface ChargeParkingDiscountMapper { int deleteByPrimaryKey(Integer id); int insertSelective(ChargeParkingDiscount record); ChargeParkingDiscount selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(ChargeParkingDiscount record); int updateBatchSelective(List list); int batchInsert(@Param("list") List list); int insertOrUpdate(ChargeParkingDiscount record); int insertOrUpdateSelective(ChargeParkingDiscount record); ChargeParkingDiscount selectByStationId(String stationId); }