| | |
| | | package com.panzhihua.service_community.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.common.model.dtos.community.OperationDetailDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveOperationRecordDO; |
| | | |
| | | import java.util.Date; |
| | |
| | | * @param remark 备注 |
| | | * @param status 状态(1.提交 2.预约成功 3.预约失败 4.取消) |
| | | * @param createBy 创建人 |
| | | * @param reserveTime 成功预约时间 |
| | | */ |
| | | void addReserveOperationRecord(Long reserveId, Long reserveRecordId, Long userId, Integer type |
| | | , String phone, String reserveContent,String remark,Integer status,Long createBy); |
| | | , String phone, String reserveContent,String remark,Integer status,Long createBy,Date reserveTime); |
| | | |
| | | /** |
| | | * 多条件查询操作记录 |
| | | * @param operationDetailDTO |
| | | * @return |
| | | */ |
| | | R detailOperationRecord(OperationDetailDTO operationDetailDTO); |
| | | } |