| | |
| | | package cn.lihu.jh.module.ecg.service.queue; |
| | | |
| | | import java.util.*; |
| | | import cn.lihu.jh.module.ecg.controller.admin.queue.vo.*; |
| | | import cn.lihu.jh.module.ecg.dal.dataobject.queue.queueDO; |
| | | import cn.lihu.jh.module.ecg.dal.dataobject.queue.QueueDO; |
| | | import cn.lihu.jh.framework.common.pojo.PageResult; |
| | | import cn.lihu.jh.framework.common.pojo.PageParam; |
| | | |
| | | import javax.validation.Valid; |
| | | |
| | |
| | | * |
| | | * @author 芋道源码 |
| | | */ |
| | | public interface queueService { |
| | | public interface QueueService { |
| | | |
| | | /** |
| | | * 创建排队 |
| | |
| | | * @param createReqVO 创建信息 |
| | | * @return 编号 |
| | | */ |
| | | Integer createqueue(@Valid queueSaveReqVO createReqVO); |
| | | Integer createqueue(@Valid QueueSaveReqVO createReqVO); |
| | | |
| | | /** |
| | | * 更新排队 |
| | | * |
| | | * @param updateReqVO 更新信息 |
| | | */ |
| | | void updatequeue(@Valid queueSaveReqVO updateReqVO); |
| | | void updatequeue(@Valid QueueSaveReqVO updateReqVO); |
| | | |
| | | /** |
| | | * 删除排队 |
| | |
| | | * @param id 编号 |
| | | * @return 排队 |
| | | */ |
| | | queueDO getqueue(Integer id); |
| | | QueueDO getqueue(Integer id); |
| | | |
| | | /** |
| | | * 获得排队分页 |
| | |
| | | * @param pageReqVO 分页查询 |
| | | * @return 排队分页 |
| | | */ |
| | | PageResult<queueDO> getqueuePage(queuePageReqVO pageReqVO); |
| | | PageResult<QueueDO> getqueuePage(QueuePageReqVO pageReqVO); |
| | | |
| | | } |