mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 20:45:10 +08:00
26 lines
747 B
Java
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);
|
|
} |