You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.4 KiB
68 lines
1.4 KiB
package com.cjy.back.ybsjHandset.service;
|
|
|
|
import com.cjy.back.ybsjHandset.controller.vo.HandsetVo;
|
|
import com.cjy.back.ybsjHandset.controller.vo.WriteOffVo;
|
|
import com.cjy.util.ServerResponse;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public interface YbsjHandsetService {
|
|
|
|
/**
|
|
* 手持机-核销
|
|
*
|
|
* @param writeOffVo
|
|
* @return
|
|
*/
|
|
|
|
ServerResponse writeOff(WriteOffVo writeOffVo);
|
|
|
|
|
|
/**
|
|
* 手持机-查询检票记录
|
|
*
|
|
* @param handsetVo
|
|
* @return
|
|
*/
|
|
ServerResponse getHaveTicketsCheckedPage(HandsetVo handsetVo);
|
|
|
|
/**
|
|
* 手持机-查询今日总检票人数和今日总预约人数
|
|
*
|
|
* @param scenicId
|
|
* @return
|
|
*/
|
|
ServerResponse getPeopleCounting(Integer scenicId);
|
|
|
|
/**
|
|
* 手持机-查询预约记录
|
|
*
|
|
* @param handsetVo
|
|
* @return
|
|
*/
|
|
ServerResponse getAppointmentRecordPage(HandsetVo handsetVo);
|
|
|
|
/**
|
|
* 手持机-查询检票记录详情
|
|
*
|
|
* @param id
|
|
* @return
|
|
*/
|
|
ServerResponse getHaveTicketsDetails(String id);
|
|
|
|
/**
|
|
* 手持机-查询预约记录详情
|
|
*
|
|
* @param id
|
|
* @return
|
|
*/
|
|
ServerResponse getAppointmentRecordDetails(String id);
|
|
|
|
/**
|
|
* 手持机-查询统计
|
|
* @param dateType
|
|
* @return
|
|
*/
|
|
List<Map<String, Object>> selectScjCount(Integer dateType);
|
|
}
|
|
|