Files
jsowell-charger-web/jsowell-pile/src/main/java/com/jsowell/pile/mapper/ChargeParkingDiscountMapper.java
2025-02-14 17:01:48 +08:00

26 lines
747 B
Java

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<ChargeParkingDiscount> list);
int batchInsert(@Param("list") List<ChargeParkingDiscount> list);
int insertOrUpdate(ChargeParkingDiscount record);
int insertOrUpdateSelective(ChargeParkingDiscount record);
ChargeParkingDiscount selectByStationId(String stationId);
}