Merge remote-tracking branch 'origin/cc_20230520_partner' into cc_20230520_partner

This commit is contained in:
pserimal
2023-06-21 17:58:59 +08:00
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

@@ -397,8 +397,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;