1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
| package com.panzhihua.service_community.service;
|
| import com.panzhihua.common.model.vos.R;
| import com.panzhihua.service_community.model.dos.ComActMicroWishOperationRecordDO;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * @auther lyq
| * @create 2021-08-27 10:28:04
| * @describe 服务类
| */
| public interface ComActMicroWishOperationRecordService extends IService<ComActMicroWishOperationRecordDO> {
| /**
| * 根据心愿id查询操作记录
| * @param id
| * @return
| */
| R getByWishId(Long id);
|
| /**
| * 添加微心愿操作记录
| * @param content 操作内容
| * @param userId 操作用户id
| * @param wishId 微心愿id
| * @param type 操作类型
| * @param remark 操作备注
| * @param imgUrl 反馈图片
| */
| void addOperationRecord(String content,Long userId,Long wishId,Integer type,String remark,String imgUrl);
| }
|
|