| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.service_community.model.dos.ComActReserveOperationRecordDO; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @auther lyq |
| | | * @create 2021-08-23 10:33:42 |
| | |
| | | */ |
| | | public interface ComActReserveOperationRecordService extends IService<ComActReserveOperationRecordDO> { |
| | | |
| | | /** |
| | | * 添加预约登记操作记录 |
| | | * @param reserveId 预约登记id |
| | | * @param reserveRecordId 预约登记记录id |
| | | * @param userId 用户id |
| | | * @param type 类型(1.本人操作 2.社区操作) |
| | | * @param phone 操作人手机号 |
| | | * @param reserveContent 操作内容 |
| | | * @param remark 备注 |
| | | * @param status 状态(1.提交 2.预约成功 3.预约失败 4.取消) |
| | | * @param createBy 创建人 |
| | | */ |
| | | void addReserveOperationRecord(Long reserveId, Long reserveRecordId, Long userId, Integer type |
| | | , String phone, String reserveContent,String remark,Integer status,Long createBy); |
| | | |
| | | } |