深圳停车平台

This commit is contained in:
Guoqs
2025-02-14 17:01:48 +08:00
parent e18cd482fa
commit f7057f925f
7 changed files with 823 additions and 38 deletions

View File

@@ -0,0 +1,35 @@
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);
}