11
This commit is contained in:
@@ -299,7 +299,7 @@
|
|||||||
a.investment_manager as investmentManager,
|
a.investment_manager as investmentManager,
|
||||||
b.user_portrait as user_portrait,
|
b.user_portrait as user_portrait,
|
||||||
b.id as partnerBaseInfoId,
|
b.id as partnerBaseInfoId,
|
||||||
b.pass_reason as passReason,
|
b.pass_reason as passCause,
|
||||||
b.certify_file as certifyFile,
|
b.certify_file as certifyFile,
|
||||||
b.pass_time as passTime,
|
b.pass_time as passTime,
|
||||||
b.pass_user_id as passUserId,
|
b.pass_user_id as passUserId,
|
||||||
|
|||||||
@@ -74,4 +74,8 @@ public class HyPartnerBaseInfoDO implements Serializable {
|
|||||||
|
|
||||||
@ApiModelProperty("更新时间")
|
@ApiModelProperty("更新时间")
|
||||||
private Date updateTime;
|
private Date updateTime;
|
||||||
|
|
||||||
|
private Date passTime;
|
||||||
|
|
||||||
|
private String passUserId;
|
||||||
}
|
}
|
||||||
@@ -58,7 +58,7 @@ public class PartnerLineInfoAndBaseInfoVO {
|
|||||||
private String passCause;
|
private String passCause;
|
||||||
|
|
||||||
@ApiModelProperty("通过时间")
|
@ApiModelProperty("通过时间")
|
||||||
private Date passTime;
|
private String passTime;
|
||||||
|
|
||||||
@ApiModelProperty("通过人名称")
|
@ApiModelProperty("通过人名称")
|
||||||
private String passUserName;
|
private String passUserName;
|
||||||
|
|||||||
@@ -258,6 +258,11 @@ public class HyPartnerLineInfoServiceImpl implements HyPartnerLineInfoService {
|
|||||||
if (CollectionUtils.isNotEmpty(closeFollowRequest.getCertifyFile())){
|
if (CollectionUtils.isNotEmpty(closeFollowRequest.getCertifyFile())){
|
||||||
hyPartnerLineInfoDO.setCertifyFile(JSONObject.toJSONString(closeFollowRequest.getCertifyFile()));
|
hyPartnerLineInfoDO.setCertifyFile(JSONObject.toJSONString(closeFollowRequest.getCertifyFile()));
|
||||||
}
|
}
|
||||||
|
HyPartnerBaseInfoDO hy = hyPartnerBaseInfoDAO.getByPartnerLineId(hyPartnerLineInfoDO.getId());
|
||||||
|
hy.setPassReason(closeFollowRequest.getPassReason());
|
||||||
|
hy.setPassTime(new Date());
|
||||||
|
hy.setPassUserId(userId);
|
||||||
|
hyPartnerBaseInfoDAO.updateByPrimaryKeySelective(hy);
|
||||||
}
|
}
|
||||||
|
|
||||||
//拒绝
|
//拒绝
|
||||||
@@ -560,7 +565,7 @@ public class HyPartnerLineInfoServiceImpl implements HyPartnerLineInfoService {
|
|||||||
partnerLineInfoAndBaseInfoVO.setPassCertifyFile(JSONObject.parseArray(partnerLineInfoAndBaseInfoDTO.getPassCertifyFile(), String.class));
|
partnerLineInfoAndBaseInfoVO.setPassCertifyFile(JSONObject.parseArray(partnerLineInfoAndBaseInfoDTO.getPassCertifyFile(), String.class));
|
||||||
}
|
}
|
||||||
partnerLineInfoAndBaseInfoVO.setPassUserId(partnerLineInfoAndBaseInfoDTO.getPassUserId());
|
partnerLineInfoAndBaseInfoVO.setPassUserId(partnerLineInfoAndBaseInfoDTO.getPassUserId());
|
||||||
partnerLineInfoAndBaseInfoVO.setPassTime(partnerLineInfoAndBaseInfoDTO.getPassTime());
|
partnerLineInfoAndBaseInfoVO.setPassTime(DateUtil.format(partnerLineInfoAndBaseInfoDTO.getPassTime(),CoolDateUtils.DATE_FORMAT_SEC));
|
||||||
return partnerLineInfoAndBaseInfoVO;
|
return partnerLineInfoAndBaseInfoVO;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user