From ad9cd583b648fdc5bdc0cf6c9cd10ce5d0b2a619 Mon Sep 17 00:00:00 2001 From: huanghongfa <huanghongfa123456> Date: 星期一, 23 八月 2021 13:12:37 +0800 Subject: [PATCH] 预约登记基础代码提交 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActReserveOperationRecordService.java | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActReserveOperationRecordService.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActReserveOperationRecordService.java index c7dab7b..7631957 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActReserveOperationRecordService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/ComActReserveOperationRecordService.java @@ -3,6 +3,8 @@ 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 @@ -10,4 +12,19 @@ */ 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); + } -- Gitblit v1.7.1