|
|
|
@ -60,7 +60,7 @@ public interface YbsjHandsetMapper { |
|
|
|
|
* @param id |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
List<Map<String, Object>> getVisitorList(@Param("id") String id,@Param("appointmentDocumentsId") String appointmentDocumentsId); |
|
|
|
|
List<Map<String, Object>> getVisitorList(@Param("id") String id, @Param("appointmentDocumentsId") String appointmentDocumentsId); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 查询当前个人预约单还有没有未核销的订单 |
|
|
|
@ -75,8 +75,8 @@ public interface YbsjHandsetMapper { |
|
|
|
|
* |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
Map<String, Object> getAppointmentPeopleInfo(@Param("reservationCode") String reservationCode,@Param("qrContent") String qrContent |
|
|
|
|
,@Param("documentsNumber") String documentsNumber); |
|
|
|
|
Map<String, Object> getAppointmentPeopleInfo(@Param("reservationCode") String reservationCode, @Param("qrContent") String qrContent |
|
|
|
|
, @Param("documentsNumber") String documentsNumber); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 手持机-通过预约人员信息表id修改状态 |
|
|
|
@ -84,7 +84,7 @@ public interface YbsjHandsetMapper { |
|
|
|
|
* @param id |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
int updatePeopleInfoId(@Param("id") String id, @Param("writeOff") String writeOff,@Param("ticketChecker") String ticketChecker); |
|
|
|
|
int updatePeopleInfoId(@Param("id") String id, @Param("writeOff") String writeOff, @Param("ticketChecker") String ticketChecker); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 手持机-通过预约单信息表appointmentDocumentsId修改状态 |
|
|
|
@ -92,7 +92,7 @@ public interface YbsjHandsetMapper { |
|
|
|
|
* @param appointmentDocumentsId |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
int updateAppointmentDocumentsId(@Param("appointmentDocumentsId") String appointmentDocumentsId, @Param("writeOff") String writeOff,@Param("ticketChecker") String ticketChecker); |
|
|
|
|
int updateAppointmentDocumentsId(@Param("appointmentDocumentsId") String appointmentDocumentsId, @Param("writeOff") String writeOff, @Param("ticketChecker") String ticketChecker); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 手持机-通过预约单信息表appointmentDocumentsId修改预约单表状态 |
|
|
|
@ -100,7 +100,7 @@ public interface YbsjHandsetMapper { |
|
|
|
|
* @param appointmentDocumentsId |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
int updateAppointmentDocumentsInfo(@Param("appointmentDocumentsId") String appointmentDocumentsId, @Param("writeOff") String writeOff,@Param("ticketChecker") String ticketChecker); |
|
|
|
|
int updateAppointmentDocumentsInfo(@Param("appointmentDocumentsId") String appointmentDocumentsId, @Param("writeOff") String writeOff, @Param("ticketChecker") String ticketChecker); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 查询景区基本信息 |
|
|
|
@ -112,9 +112,26 @@ public interface YbsjHandsetMapper { |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 查询团队预约和研学预约 |
|
|
|
|
* |
|
|
|
|
* @param appointmentDocumentsId |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
List<Map<String,Object>>getPeopleInfo(Integer appointmentDocumentsId); |
|
|
|
|
List<Map<String, Object>> getPeopleInfo(Integer appointmentDocumentsId); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 手持机-查询统计 |
|
|
|
|
* |
|
|
|
|
* @param dateType |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
List<Map<String, Object>> selectScjCount(Integer dateType); |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 手持机-查询统计-研学 |
|
|
|
|
* |
|
|
|
|
* @param dateType |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
List<Map<String, Object>> selectScjCountTwo(Integer dateType); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|