mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
36 lines
916 B
Java
36 lines
916 B
Java
package com.jsowell.pile.service;
|
|
|
|
import com.jsowell.pile.domain.ChargeParkingDiscount;
|
|
import com.jsowell.pile.vo.web.ChargeParkingDiscountVO;
|
|
|
|
import java.util.List;
|
|
public interface ChargeParkingDiscountService{
|
|
|
|
|
|
int deleteByPrimaryKey(Integer id);
|
|
|
|
int insertSelective(ChargeParkingDiscount record);
|
|
|
|
ChargeParkingDiscount selectByPrimaryKey(Integer id);
|
|
|
|
/**
|
|
* 根据车场ID查询车场信息
|
|
* @param stationId
|
|
* @return
|
|
*/
|
|
ChargeParkingDiscount selectByStationId(String stationId);
|
|
|
|
ChargeParkingDiscountVO getChargeParkingDiscount(String stationId);
|
|
|
|
int updateByPrimaryKeySelective(ChargeParkingDiscount record);
|
|
|
|
int updateBatchSelective(List<ChargeParkingDiscount> list);
|
|
|
|
int batchInsert(List<ChargeParkingDiscount> list);
|
|
|
|
int insertOrUpdate(ChargeParkingDiscount record);
|
|
|
|
int insertOrUpdateSelective(ChargeParkingDiscount record);
|
|
|
|
}
|