mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
深圳停车平台
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user