2025-02-14 17:01:48 +08:00
|
|
|
package com.jsowell.pile.mapper;
|
|
|
|
|
|
|
|
|
|
import com.jsowell.pile.domain.ChargeParkingDiscount;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2025-02-17 16:15:54 +08:00
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
2025-02-14 17:01:48 +08:00
|
|
|
public interface ChargeParkingDiscountMapper {
|
|
|
|
|
int deleteByPrimaryKey(Integer id);
|
|
|
|
|
|
|
|
|
|
int insertSelective(ChargeParkingDiscount record);
|
|
|
|
|
|
|
|
|
|
ChargeParkingDiscount selectByPrimaryKey(Integer id);
|
|
|
|
|
|
|
|
|
|
int updateByPrimaryKeySelective(ChargeParkingDiscount record);
|
|
|
|
|
|
|
|
|
|
int updateBatchSelective(List<ChargeParkingDiscount> list);
|
|
|
|
|
|
|
|
|
|
int batchInsert(@Param("list") List<ChargeParkingDiscount> list);
|
|
|
|
|
|
|
|
|
|
int insertOrUpdate(ChargeParkingDiscount record);
|
|
|
|
|
|
|
|
|
|
int insertOrUpdateSelective(ChargeParkingDiscount record);
|
|
|
|
|
|
|
|
|
|
ChargeParkingDiscount selectByStationId(String stationId);
|
|
|
|
|
}
|