mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-20 23:29:48 +08:00
18 lines
524 B
Java
18 lines
524 B
Java
|
|
package com.jsowell.pile.service;
|
||
|
|
|
||
|
|
import com.jsowell.pile.dto.YuxinReservationChargingDTO;
|
||
|
|
import com.jsowell.pile.vo.PileReservationInfoVO;
|
||
|
|
|
||
|
|
public interface YuxinReservationChargingService {
|
||
|
|
|
||
|
|
int createReservation(YuxinReservationChargingDTO dto);
|
||
|
|
|
||
|
|
int updateReservation(YuxinReservationChargingDTO dto);
|
||
|
|
|
||
|
|
void cancelReservation(YuxinReservationChargingDTO dto);
|
||
|
|
|
||
|
|
void deleteReservation(YuxinReservationChargingDTO dto);
|
||
|
|
|
||
|
|
PileReservationInfoVO queryReservationInfo(YuxinReservationChargingDTO dto);
|
||
|
|
}
|