Merge remote-tracking branch 'origin/cc_20230520_partner' into cc_20230520_partner
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user