| | |
| | | */ |
| | | public interface QueueSequenceService { |
| | | |
| | | void initQueueSequenceTable(); |
| | | |
| | | /** |
| | | * 创建当天序号 |
| | | * |
| | |
| | | QueueSequenceDO getQueueSequence(Integer id); |
| | | |
| | | /** |
| | | * 获得指定检查类型的时间段情况 |
| | | * |
| | | */ |
| | | List<QueueSequenceDO> selectGivenCheckTypeTimeslot(Integer checkType); |
| | | |
| | | /** |
| | | * 获得当天序号分页 |
| | | * |
| | | * @param pageReqVO 分页查询 |
| | |
| | | PageResult<QueueSequenceDO> getQueueSequencePage(QueueSequencePageReqVO pageReqVO); |
| | | |
| | | void resetQueueSequence(); |
| | | |
| | | Integer distributeSeqNo(Integer checkType, Integer timeslot); |
| | | Integer distributeVipSeqNo(Integer checkType, Integer timeslot); |
| | | } |