线索时间修改

This commit is contained in:
苏竹红
2023-06-21 17:47:08 +08:00
parent 5f0aa220cd
commit e9b55938ed
2 changed files with 4 additions and 4 deletions

View File

@@ -16,9 +16,9 @@ import java.util.Date;
public class LineFollowHistoryVO {
@ApiModelProperty("开始跟进时间")
private Date startTime;
private String startTime;
@ApiModelProperty("结束跟进时间")
private Date closeTime;
private String closeTime;
@ApiModelProperty("结束原因")
private String closeCause;

View File

@@ -394,8 +394,8 @@ public class HyPartnerLineInfoServiceImpl implements HyPartnerLineInfoService {
lineFollowHistoryList.forEach(x->{
LineFollowHistoryVO lineFollowHistoryVO = new LineFollowHistoryVO();
lineFollowHistoryVO.setCloseCause(x.getRejectPublicReason());
lineFollowHistoryVO.setCloseTime(x.getCloseTime());
lineFollowHistoryVO.setStartTime(x.getCreateTime());
lineFollowHistoryVO.setCloseTime( DateUtil.format(x.getCloseTime(), CoolDateUtils.DATE_FORMAT_SEC));
lineFollowHistoryVO.setStartTime(DateUtil.format(x.getCreateTime(), CoolDateUtils.DATE_FORMAT_SEC));
result.add(lineFollowHistoryVO);
});
return result;