|
@@ -8,21 +8,24 @@ import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
-import org.springframework.util.CollectionUtils;
|
|
|
|
|
import shop.alien.entity.result.R;
|
|
import shop.alien.entity.result.R;
|
|
|
import shop.alien.entity.store.LifeFeedback;
|
|
import shop.alien.entity.store.LifeFeedback;
|
|
|
|
|
+import shop.alien.entity.store.LifeFeedbackReply;
|
|
|
import shop.alien.entity.store.LifeImg;
|
|
import shop.alien.entity.store.LifeImg;
|
|
|
import shop.alien.entity.store.LifeLog;
|
|
import shop.alien.entity.store.LifeLog;
|
|
|
-import shop.alien.entity.store.dto.FeedbackReplyDto;
|
|
|
|
|
import shop.alien.entity.store.dto.LifeFeedbackDto;
|
|
import shop.alien.entity.store.dto.LifeFeedbackDto;
|
|
|
|
|
+import shop.alien.entity.store.dto.UserReplyDto;
|
|
|
import shop.alien.entity.store.vo.LifeFeedbackVo;
|
|
import shop.alien.entity.store.vo.LifeFeedbackVo;
|
|
|
import shop.alien.mapper.LifeFeedbackMapper;
|
|
import shop.alien.mapper.LifeFeedbackMapper;
|
|
|
import shop.alien.mapper.LifeLogMapper;
|
|
import shop.alien.mapper.LifeLogMapper;
|
|
|
import shop.alien.store.service.LifeFeedbackService;
|
|
import shop.alien.store.service.LifeFeedbackService;
|
|
|
|
|
+import shop.alien.store.service.LifeFeedbackReplyService;
|
|
|
import shop.alien.store.service.LifeImgService;
|
|
import shop.alien.store.service.LifeImgService;
|
|
|
|
|
+import org.springframework.util.CollectionUtils;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
+import java.util.ArrayList;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 意见反馈 Service实现类
|
|
* 意见反馈 Service实现类
|
|
@@ -36,6 +39,7 @@ public class LifeFeedbackServiceImpl extends ServiceImpl<LifeFeedbackMapper, Lif
|
|
|
private final LifeFeedbackMapper lifeFeedbackMapper;
|
|
private final LifeFeedbackMapper lifeFeedbackMapper;
|
|
|
private final LifeImgService lifeImgService;
|
|
private final LifeImgService lifeImgService;
|
|
|
private final LifeLogMapper lifeLogMapper;
|
|
private final LifeLogMapper lifeLogMapper;
|
|
|
|
|
+ private final LifeFeedbackReplyService lifeFeedbackReplyService;
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
public R<String> submitFeedback(LifeFeedbackDto dto) {
|
|
public R<String> submitFeedback(LifeFeedbackDto dto) {
|
|
@@ -57,34 +61,89 @@ public class LifeFeedbackServiceImpl extends ServiceImpl<LifeFeedbackMapper, Lif
|
|
|
// 2. 创建反馈记录(使用MyBatis Plus的save方法)
|
|
// 2. 创建反馈记录(使用MyBatis Plus的save方法)
|
|
|
LifeFeedback feedback = new LifeFeedback();
|
|
LifeFeedback feedback = new LifeFeedback();
|
|
|
BeanUtils.copyProperties(dto, feedback);
|
|
BeanUtils.copyProperties(dto, feedback);
|
|
|
|
|
+ // 如果feedbackWay为空,默认为用户主动反馈(0)
|
|
|
|
|
+ if (feedback.getFeedbackWay() == null) {
|
|
|
|
|
+ feedback.setFeedbackWay(0);
|
|
|
|
|
+ }
|
|
|
feedback.setFeedbackTime(new Date());
|
|
feedback.setFeedbackTime(new Date());
|
|
|
- feedback.setHandleStatus(0); // 待处理
|
|
|
|
|
- feedback.setCreatedTime(new Date());
|
|
|
|
|
- feedback.setCreatedUserId(dto.getUserId());
|
|
|
|
|
|
|
+ feedback.setHandleStatus(0); // 处理中
|
|
|
|
|
+ feedback.setCreateTime(new Date());
|
|
|
|
|
|
|
|
boolean saveResult = this.save(feedback);
|
|
boolean saveResult = this.save(feedback);
|
|
|
if (!saveResult) {
|
|
if (!saveResult) {
|
|
|
return R.fail("提交反馈失败");
|
|
return R.fail("提交反馈失败");
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- // 3. 保存附件图片(使用批量插入)
|
|
|
|
|
- if (!CollectionUtils.isEmpty(dto.getImgUrlList())) {
|
|
|
|
|
- List<LifeImg> imgList = new java.util.ArrayList<>();
|
|
|
|
|
- int sort = 1;
|
|
|
|
|
- for (String imgUrl : dto.getImgUrlList()) {
|
|
|
|
|
- LifeImg img = new LifeImg();
|
|
|
|
|
- img.setFeedbackId(feedback.getId());
|
|
|
|
|
- img.setImgUrl(imgUrl);
|
|
|
|
|
- img.setImgSort(sort++);
|
|
|
|
|
- img.setCreatedTime(new Date());
|
|
|
|
|
- img.setCreatedUserId(dto.getUserId());
|
|
|
|
|
- imgList.add(img);
|
|
|
|
|
|
|
+ // 3. 保存附件(图片和视频)
|
|
|
|
|
+ List<LifeImg> fileList = new ArrayList<>();
|
|
|
|
|
+ // 收集所有视频的截图URL,避免重复保存为普通图片
|
|
|
|
|
+ List<String> videoThumbnailUrls = new ArrayList<>();
|
|
|
|
|
+
|
|
|
|
|
+ if (!CollectionUtils.isEmpty(dto.getFileUrlList())) {
|
|
|
|
|
+ // 先处理视频,找到所有视频及其封面图
|
|
|
|
|
+ List<String> videoUrls = new ArrayList<>();
|
|
|
|
|
+ List<String> imageUrls = new ArrayList<>();
|
|
|
|
|
+
|
|
|
|
|
+ // 分类:区分视频和图片
|
|
|
|
|
+ for (String fileUrl : dto.getFileUrlList()) {
|
|
|
|
|
+ if (isVideoUrl(fileUrl)) {
|
|
|
|
|
+ videoUrls.add(fileUrl);
|
|
|
|
|
+ } else if (isImageUrl(fileUrl)) {
|
|
|
|
|
+ imageUrls.add(fileUrl);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
- lifeImgService.batchSave(imgList);
|
|
|
|
|
|
|
+
|
|
|
|
|
+ // 处理视频:自动匹配封面图
|
|
|
|
|
+ for (String videoUrl : videoUrls) {
|
|
|
|
|
+ LifeImg video = new LifeImg();
|
|
|
|
|
+ video.setFeedbackId(feedback.getId());
|
|
|
|
|
+ video.setImgUrl(videoUrl);
|
|
|
|
|
+ video.setFileType(2); // 2-视频
|
|
|
|
|
+ video.setUploadTime(new Date());
|
|
|
|
|
+
|
|
|
|
|
+ // 从fileUrlList中查找对应的封面图URL(通过文件名匹配)
|
|
|
|
|
+ // 视频URL格式: .../video/xxx123456.mp4
|
|
|
|
|
+ // 封面图URL格式: .../video/xxx123456.jpg 或 .../image/xxx123456.jpg
|
|
|
|
|
+ String videoFileName = videoUrl.substring(videoUrl.lastIndexOf('/') + 1);
|
|
|
|
|
+ String videoNameWithoutExt = videoFileName.substring(0, videoFileName.lastIndexOf('.'));
|
|
|
|
|
+
|
|
|
|
|
+ // 在图片列表中查找匹配的封面图
|
|
|
|
|
+ for (String imgUrl : imageUrls) {
|
|
|
|
|
+ String imgFileName = imgUrl.substring(imgUrl.lastIndexOf('/') + 1);
|
|
|
|
|
+ if (imgFileName.contains(".")) {
|
|
|
|
|
+ String imgNameWithoutExt = imgFileName.substring(0, imgFileName.lastIndexOf('.'));
|
|
|
|
|
+ // 如果文件名(不含扩展名)相同,且是图片格式,则认为是该视频的封面图
|
|
|
|
|
+ if (videoNameWithoutExt.equals(imgNameWithoutExt) && isImageUrl(imgUrl)) {
|
|
|
|
|
+ video.setThumbnailUrl(imgUrl);
|
|
|
|
|
+ videoThumbnailUrls.add(imgUrl); // 记录已使用的封面图URL
|
|
|
|
|
+ break;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ fileList.add(video);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ // 处理图片(排除已作为视频封面的URL)
|
|
|
|
|
+ for (String imgUrl : imageUrls) {
|
|
|
|
|
+ // 如果该URL已被用作视频封面,则跳过,不重复保存
|
|
|
|
|
+ if (!videoThumbnailUrls.contains(imgUrl)) {
|
|
|
|
|
+ LifeImg img = new LifeImg();
|
|
|
|
|
+ img.setFeedbackId(feedback.getId());
|
|
|
|
|
+ img.setImgUrl(imgUrl);
|
|
|
|
|
+ img.setFileType(1); // 1-图片
|
|
|
|
|
+ img.setUploadTime(new Date());
|
|
|
|
|
+ fileList.add(img);
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ if (!fileList.isEmpty()) {
|
|
|
|
|
+ lifeImgService.batchSave(fileList);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- // 4. 记录日志
|
|
|
|
|
- saveLog("用户提交反馈,ID:" + feedback.getId());
|
|
|
|
|
|
|
+ // 4. 记录日志(只记录详细内容)
|
|
|
|
|
+ saveLog(feedback.getId(), feedback.getContent(), "0");
|
|
|
|
|
|
|
|
return R.success("提交成功");
|
|
return R.success("提交成功");
|
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
@@ -94,75 +153,23 @@ public class LifeFeedbackServiceImpl extends ServiceImpl<LifeFeedbackMapper, Lif
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
- public R<String> replyFeedback(FeedbackReplyDto dto) {
|
|
|
|
|
- try {
|
|
|
|
|
- // 1. 参数校验
|
|
|
|
|
- if (dto.getFeedbackId() == null) {
|
|
|
|
|
- return R.fail("反馈ID不能为空");
|
|
|
|
|
- }
|
|
|
|
|
- if (dto.getStaffId() == null) {
|
|
|
|
|
- return R.fail("工作人员ID不能为空");
|
|
|
|
|
- }
|
|
|
|
|
- if (dto.getContent() == null || dto.getContent().trim().isEmpty()) {
|
|
|
|
|
- return R.fail("回复内容不能为空");
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- // 2. 查询原始反馈
|
|
|
|
|
- LifeFeedback originalFeedback = lifeFeedbackMapper.selectById(dto.getFeedbackId());
|
|
|
|
|
- if (originalFeedback == null) {
|
|
|
|
|
- return R.fail("反馈记录不存在");
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- // 3. 创建平台回复记录(使用MyBatis Plus的save方法)
|
|
|
|
|
- LifeFeedback reply = new LifeFeedback();
|
|
|
|
|
- reply.setUserId(originalFeedback.getUserId());
|
|
|
|
|
- reply.setFeedbackSource(originalFeedback.getFeedbackSource());
|
|
|
|
|
- reply.setFeedbackWay(2); // 平台回复
|
|
|
|
|
- reply.setFeedbackType(originalFeedback.getFeedbackType());
|
|
|
|
|
- reply.setContent(dto.getContent());
|
|
|
|
|
- reply.setFeedbackTime(new Date());
|
|
|
|
|
- reply.setFollowUpStaff(dto.getStaffId());
|
|
|
|
|
- reply.setHandleStatus(2); // 已完成
|
|
|
|
|
- reply.setCreatedTime(new Date());
|
|
|
|
|
- reply.setCreatedUserId(dto.getStaffId());
|
|
|
|
|
-
|
|
|
|
|
- boolean saveResult = this.save(reply);
|
|
|
|
|
- if (!saveResult) {
|
|
|
|
|
- return R.fail("回复失败");
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- // 4. 更新原始反馈的处理状态和跟进人员(使用MyBatis Plus的updateById方法)
|
|
|
|
|
- LifeFeedback updateFeedback = new LifeFeedback();
|
|
|
|
|
- updateFeedback.setId(dto.getFeedbackId());
|
|
|
|
|
- updateFeedback.setHandleStatus(1); // 处理中
|
|
|
|
|
- updateFeedback.setFollowUpStaff(dto.getStaffId());
|
|
|
|
|
- updateFeedback.setUpdatedTime(new Date());
|
|
|
|
|
- updateFeedback.setUpdatedUserId(dto.getStaffId());
|
|
|
|
|
- this.updateById(updateFeedback);
|
|
|
|
|
-
|
|
|
|
|
- // 5. 记录日志
|
|
|
|
|
- saveLog("平台回复反馈,原始反馈ID:" + dto.getFeedbackId() + ",回复ID:" + reply.getId());
|
|
|
|
|
-
|
|
|
|
|
- return R.success("回复成功");
|
|
|
|
|
- } catch (Exception e) {
|
|
|
|
|
- log.error("回复反馈失败", e);
|
|
|
|
|
- return R.fail("回复反馈失败:" + e.getMessage());
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- @Override
|
|
|
|
|
public IPage<LifeFeedbackVo> getFeedbackList(Integer userId, Integer feedbackSource, int page, int size) {
|
|
public IPage<LifeFeedbackVo> getFeedbackList(Integer userId, Integer feedbackSource, int page, int size) {
|
|
|
try {
|
|
try {
|
|
|
// 使用自定义SQL查询(已包含工作人员名称)
|
|
// 使用自定义SQL查询(已包含工作人员名称)
|
|
|
|
|
+ // 查询用户反馈(feedbackWay=0)和AI识别(feedbackWay=1)的记录
|
|
|
Page<LifeFeedbackVo> pageParam = new Page<>(page, size);
|
|
Page<LifeFeedbackVo> pageParam = new Page<>(page, size);
|
|
|
IPage<LifeFeedbackVo> voPage = lifeFeedbackMapper.selectFeedbackListWithStaff(
|
|
IPage<LifeFeedbackVo> voPage = lifeFeedbackMapper.selectFeedbackListWithStaff(
|
|
|
- pageParam, userId, feedbackSource, 1, null
|
|
|
|
|
|
|
+ pageParam, userId, feedbackSource, null, null
|
|
|
);
|
|
);
|
|
|
|
|
|
|
|
- // 为每条记录查询附件图片
|
|
|
|
|
|
|
+ // 为每条记录查询附件(图片和视频)并设置反馈类型名称
|
|
|
voPage.getRecords().forEach(vo -> {
|
|
voPage.getRecords().forEach(vo -> {
|
|
|
List<String> imgUrls = lifeImgService.getImgUrlsByFeedbackId(vo.getId());
|
|
List<String> imgUrls = lifeImgService.getImgUrlsByFeedbackId(vo.getId());
|
|
|
vo.setImgUrlList(imgUrls);
|
|
vo.setImgUrlList(imgUrls);
|
|
|
|
|
+ List<String> videoUrls = lifeImgService.getVideoUrlsByFeedbackId(vo.getId());
|
|
|
|
|
+ vo.setVideoUrlList(videoUrls);
|
|
|
|
|
+ // 设置反馈类型名称
|
|
|
|
|
+ vo.setFeedbackTypeName(getFeedbackTypeName(vo.getFeedbackType()));
|
|
|
});
|
|
});
|
|
|
|
|
|
|
|
return voPage;
|
|
return voPage;
|
|
@@ -181,18 +188,102 @@ public class LifeFeedbackServiceImpl extends ServiceImpl<LifeFeedbackMapper, Lif
|
|
|
return R.fail("反馈记录不存在");
|
|
return R.fail("反馈记录不存在");
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- // 2. 查询附件图片
|
|
|
|
|
- List<String> imgUrls = lifeImgService.getImgUrlsByFeedbackId(feedbackId);
|
|
|
|
|
|
|
+ // 2. 查询附件(图片和视频)
|
|
|
|
|
+ // 查询所有附件,然后过滤出原始反馈的附件(排除回复附件)
|
|
|
|
|
+ List<LifeImg> allImgs = lifeImgService.getByFeedbackId(feedbackId);
|
|
|
|
|
+ List<String> imgUrls = new ArrayList<>();
|
|
|
|
|
+ List<String> videoUrls = new ArrayList<>();
|
|
|
|
|
+ Date feedbackTime = vo.getFeedbackTime();
|
|
|
|
|
+ if (feedbackTime != null) {
|
|
|
|
|
+ long feedbackTimeMs = feedbackTime.getTime();
|
|
|
|
|
+ for (LifeImg img : allImgs) {
|
|
|
|
|
+ if (img.getUploadTime() != null) {
|
|
|
|
|
+ long imgTimeMs = img.getUploadTime().getTime();
|
|
|
|
|
+ // 判断附件是否属于原始反馈(时间差在5分钟内,且早于最早的回复)
|
|
|
|
|
+ // 简化处理:如果是反馈后5分钟内的附件,认为是原始反馈的附件
|
|
|
|
|
+ List<LifeFeedbackReply> replyList = lifeFeedbackReplyService.getByFeedbackId(feedbackId);
|
|
|
|
|
+ boolean isOriginalFeedback = true;
|
|
|
|
|
+ if (!replyList.isEmpty()) {
|
|
|
|
|
+ Date firstReplyTime = replyList.get(0).getCreateTime();
|
|
|
|
|
+ // 如果附件时间在最早回复时间之后,则不属于原始反馈
|
|
|
|
|
+ if (img.getUploadTime().after(firstReplyTime)) {
|
|
|
|
|
+ isOriginalFeedback = false;
|
|
|
|
|
+ } else {
|
|
|
|
|
+ long timeDiff = Math.abs(imgTimeMs - feedbackTimeMs);
|
|
|
|
|
+ if (timeDiff > 5 * 60 * 1000) { // 超过5分钟
|
|
|
|
|
+ isOriginalFeedback = false;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ } else {
|
|
|
|
|
+ long timeDiff = Math.abs(imgTimeMs - feedbackTimeMs);
|
|
|
|
|
+ if (timeDiff > 5 * 60 * 1000) { // 超过5分钟
|
|
|
|
|
+ isOriginalFeedback = false;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ if (isOriginalFeedback) {
|
|
|
|
|
+ if (img.getFileType() == 1) {
|
|
|
|
|
+ imgUrls.add(img.getImgUrl());
|
|
|
|
|
+ } else if (img.getFileType() == 2) {
|
|
|
|
|
+ videoUrls.add(img.getImgUrl());
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ } else {
|
|
|
|
|
+ // 如果没有反馈时间,使用简单方式:只查询图片和视频
|
|
|
|
|
+ for (LifeImg img : allImgs) {
|
|
|
|
|
+ if (img.getFileType() == 1) {
|
|
|
|
|
+ imgUrls.add(img.getImgUrl());
|
|
|
|
|
+ } else if (img.getFileType() == 2) {
|
|
|
|
|
+ videoUrls.add(img.getImgUrl());
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
vo.setImgUrlList(imgUrls);
|
|
vo.setImgUrlList(imgUrls);
|
|
|
|
|
+ vo.setVideoUrlList(videoUrls);
|
|
|
|
|
+ // 设置反馈类型名称
|
|
|
|
|
+ vo.setFeedbackTypeName(getFeedbackTypeName(vo.getFeedbackType()));
|
|
|
|
|
|
|
|
- // 3. 查询平台回复列表(如果是主动反馈)
|
|
|
|
|
- if (vo.getFeedbackWay() == 1) {
|
|
|
|
|
- List<LifeFeedbackVo> replyList = lifeFeedbackMapper.selectPlatformReplies(
|
|
|
|
|
- vo.getUserId(), vo.getFeedbackSource(), vo.getFeedbackTime()
|
|
|
|
|
- );
|
|
|
|
|
- vo.setPlatformReplies(replyList);
|
|
|
|
|
|
|
+ // 3. 查询回复列表(从life_feedback_reply表)
|
|
|
|
|
+ List<LifeFeedbackReply> replyList = lifeFeedbackReplyService.getByFeedbackId(feedbackId);
|
|
|
|
|
+ // 转换为VO格式(使用之前查询的allImgs)
|
|
|
|
|
+ List<LifeFeedbackVo> replyVoList = new ArrayList<>();
|
|
|
|
|
+ for (LifeFeedbackReply reply : replyList) {
|
|
|
|
|
+ LifeFeedbackVo replyVo = new LifeFeedbackVo();
|
|
|
|
|
+ replyVo.setId(reply.getId());
|
|
|
|
|
+ replyVo.setContent(reply.getReplyContent());
|
|
|
|
|
+ replyVo.setFeedbackTime(reply.getCreateTime());
|
|
|
|
|
+ // reply_type: 0-平台回复, 1-我的回复
|
|
|
|
|
+ replyVo.setStaffId(reply.getReplyType() == 0 ? 1 : null); // 平台回复有staffId,用户回复为null
|
|
|
|
|
+ // 查询回复的附件(通过时间判断:上传时间在回复创建时间前后5分钟内)
|
|
|
|
|
+ List<String> replyImgUrls = new ArrayList<>();
|
|
|
|
|
+ List<String> replyVideoUrls = new ArrayList<>();
|
|
|
|
|
+ Date replyTime = reply.getCreateTime();
|
|
|
|
|
+ long replyTimeMs = replyTime.getTime();
|
|
|
|
|
+ for (LifeImg img : allImgs) {
|
|
|
|
|
+ if (img.getUploadTime() != null) {
|
|
|
|
|
+ long imgTimeMs = img.getUploadTime().getTime();
|
|
|
|
|
+ // 判断附件是否属于该回复(时间差在5分钟内)
|
|
|
|
|
+ long timeDiff = Math.abs(imgTimeMs - replyTimeMs);
|
|
|
|
|
+ if (timeDiff <= 5 * 60 * 1000) { // 5分钟
|
|
|
|
|
+ if (img.getFileType() == 1) {
|
|
|
|
|
+ replyImgUrls.add(img.getImgUrl());
|
|
|
|
|
+ } else if (img.getFileType() == 2) {
|
|
|
|
|
+ replyVideoUrls.add(img.getImgUrl());
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ replyVo.setImgUrlList(replyImgUrls);
|
|
|
|
|
+ replyVo.setVideoUrlList(replyVideoUrls);
|
|
|
|
|
+ replyVoList.add(replyVo);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ // 4. 按时间升序排序回复
|
|
|
|
|
+ replyVoList.sort((a, b) -> a.getFeedbackTime().compareTo(b.getFeedbackTime()));
|
|
|
|
|
+ vo.setPlatformReplies(replyVoList);
|
|
|
|
|
+
|
|
|
return R.data(vo);
|
|
return R.data(vo);
|
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
|
log.error("查询反馈详情失败", e);
|
|
log.error("查询反馈详情失败", e);
|
|
@@ -201,40 +292,129 @@ public class LifeFeedbackServiceImpl extends ServiceImpl<LifeFeedbackMapper, Lif
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
- public R<String> updateHandleStatus(Integer feedbackId, Integer handleStatus, Integer staffId) {
|
|
|
|
|
|
|
+ public R<String> userReply(UserReplyDto dto) {
|
|
|
try {
|
|
try {
|
|
|
- // 使用MyBatis Plus的updateById方法
|
|
|
|
|
- LifeFeedback feedback = new LifeFeedback();
|
|
|
|
|
- feedback.setId(feedbackId);
|
|
|
|
|
- feedback.setHandleStatus(handleStatus);
|
|
|
|
|
- feedback.setFollowUpStaff(staffId);
|
|
|
|
|
- feedback.setUpdatedTime(new Date());
|
|
|
|
|
- feedback.setUpdatedUserId(staffId);
|
|
|
|
|
-
|
|
|
|
|
- boolean result = this.updateById(feedback);
|
|
|
|
|
- if (result) {
|
|
|
|
|
- saveLog("更新反馈处理状态,反馈ID:" + feedbackId + ",状态:" + handleStatus);
|
|
|
|
|
- return R.success("更新成功");
|
|
|
|
|
- }
|
|
|
|
|
- return R.fail("更新失败");
|
|
|
|
|
|
|
+ // 1. 参数校验
|
|
|
|
|
+ if (dto.getUserId() == null) {
|
|
|
|
|
+ return R.fail("用户ID不能为空");
|
|
|
|
|
+ }
|
|
|
|
|
+ if (dto.getFeedbackSource() == null) {
|
|
|
|
|
+ return R.fail("反馈来源不能为空");
|
|
|
|
|
+ }
|
|
|
|
|
+ if (dto.getFeedbackId() == null) {
|
|
|
|
|
+ return R.fail("反馈ID不能为空");
|
|
|
|
|
+ }
|
|
|
|
|
+ if (dto.getContent() == null || dto.getContent().trim().isEmpty()) {
|
|
|
|
|
+ return R.fail("回复内容不能为空");
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ // 2. 查询原始反馈(用于验证反馈是否存在)
|
|
|
|
|
+ LifeFeedback originalFeedback = lifeFeedbackMapper.selectById(dto.getFeedbackId());
|
|
|
|
|
+ if (originalFeedback == null) {
|
|
|
|
|
+ return R.fail("反馈记录不存在");
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ // 3. 创建用户回复记录(保存到life_feedback_reply表)
|
|
|
|
|
+ LifeFeedbackReply userReply = new LifeFeedbackReply();
|
|
|
|
|
+ userReply.setFeedbackId(dto.getFeedbackId());
|
|
|
|
|
+ userReply.setReplyType(1); // 1-我的回复(用户回复)
|
|
|
|
|
+ userReply.setReplyContent(dto.getContent());
|
|
|
|
|
+ userReply.setCreateTime(new Date());
|
|
|
|
|
+ userReply.setUpdateTime(new Date());
|
|
|
|
|
+
|
|
|
|
|
+ boolean saveResult = lifeFeedbackReplyService.save(userReply);
|
|
|
|
|
+ if (!saveResult) {
|
|
|
|
|
+ return R.fail("回复失败");
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ // 4. 记录日志(只记录内容)
|
|
|
|
|
+ saveLog(dto.getFeedbackId(), dto.getContent(), "2");
|
|
|
|
|
+
|
|
|
|
|
+ return R.success("回复成功");
|
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
|
- log.error("更新反馈处理状态失败", e);
|
|
|
|
|
- return R.fail("更新失败:" + e.getMessage());
|
|
|
|
|
|
|
+ log.error("用户回复失败", e);
|
|
|
|
|
+ return R.fail("用户回复失败:" + e.getMessage());
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 保存操作日志
|
|
* 保存操作日志
|
|
|
|
|
+ * @param feedbackId 反馈ID
|
|
|
|
|
+ * @param context 日志内容
|
|
|
|
|
+ * @param type 操作类型:0-创建反馈工单,1-分配跟踪人员,2-回复用户,3-问题解决状态
|
|
|
*/
|
|
*/
|
|
|
- private void saveLog(String context) {
|
|
|
|
|
|
|
+ private void saveLog(Integer feedbackId, String context, String type) {
|
|
|
try {
|
|
try {
|
|
|
- LifeLog log = new LifeLog();
|
|
|
|
|
- log.setContext(context);
|
|
|
|
|
- log.setCreatedTime(new Date());
|
|
|
|
|
- lifeLogMapper.insert(log);
|
|
|
|
|
|
|
+ LifeLog lifeLog = new LifeLog();
|
|
|
|
|
+ lifeLog.setFeedbackId(feedbackId);
|
|
|
|
|
+ lifeLog.setContext(context);
|
|
|
|
|
+ lifeLog.setType(type);
|
|
|
|
|
+ lifeLog.setCreatedTime(new Date());
|
|
|
|
|
+ lifeLogMapper.insert(lifeLog);
|
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
|
log.error("保存日志失败", e);
|
|
log.error("保存日志失败", e);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 获取反馈类型名称
|
|
|
|
|
+ * @param feedbackType 反馈类型:0-bug反馈,1-优化反馈,2-新增功能反馈
|
|
|
|
|
+ * @return 反馈类型名称
|
|
|
|
|
+ */
|
|
|
|
|
+ private String getFeedbackTypeName(Integer feedbackType) {
|
|
|
|
|
+ if (feedbackType == null) {
|
|
|
|
|
+ return "";
|
|
|
|
|
+ }
|
|
|
|
|
+ switch (feedbackType) {
|
|
|
|
|
+ case 0:
|
|
|
|
|
+ return "bug反馈";
|
|
|
|
|
+ case 1:
|
|
|
|
|
+ return "优化反馈";
|
|
|
|
|
+ case 2:
|
|
|
|
|
+ return "新增功能反馈";
|
|
|
|
|
+ default:
|
|
|
|
|
+ return "";
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 判断URL是否为视频
|
|
|
|
|
+ * @param url 文件URL
|
|
|
|
|
+ * @return true-视频,false-非视频
|
|
|
|
|
+ */
|
|
|
|
|
+ private boolean isVideoUrl(String url) {
|
|
|
|
|
+ if (url == null || url.isEmpty()) {
|
|
|
|
|
+ return false;
|
|
|
|
|
+ }
|
|
|
|
|
+ String lowerUrl = url.toLowerCase();
|
|
|
|
|
+ return lowerUrl.endsWith(".mp4") ||
|
|
|
|
|
+ lowerUrl.endsWith(".avi") ||
|
|
|
|
|
+ lowerUrl.endsWith(".flv") ||
|
|
|
|
|
+ lowerUrl.endsWith(".mkv") ||
|
|
|
|
|
+ lowerUrl.endsWith(".rmvb") ||
|
|
|
|
|
+ lowerUrl.endsWith(".wmv") ||
|
|
|
|
|
+ lowerUrl.endsWith(".3gp") ||
|
|
|
|
|
+ lowerUrl.endsWith(".mov");
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 判断URL是否为图片
|
|
|
|
|
+ * @param url 文件URL
|
|
|
|
|
+ * @return true-图片,false-非图片
|
|
|
|
|
+ */
|
|
|
|
|
+ private boolean isImageUrl(String url) {
|
|
|
|
|
+ if (url == null || url.isEmpty()) {
|
|
|
|
|
+ return false;
|
|
|
|
|
+ }
|
|
|
|
|
+ String lowerUrl = url.toLowerCase();
|
|
|
|
|
+ return lowerUrl.endsWith(".jpg") ||
|
|
|
|
|
+ lowerUrl.endsWith(".jpeg") ||
|
|
|
|
|
+ lowerUrl.endsWith(".png") ||
|
|
|
|
|
+ lowerUrl.endsWith(".bmp") ||
|
|
|
|
|
+ lowerUrl.endsWith(".webp") ||
|
|
|
|
|
+ lowerUrl.endsWith(".gif") ||
|
|
|
|
|
+ lowerUrl.endsWith(".svg");
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
|
|
|