transferInvestmentManager

This commit is contained in:
苏竹红
2023-06-27 15:16:10 +08:00
parent 3245e5ff63
commit 2ef41b5722
17 changed files with 81 additions and 17 deletions

View File

@@ -76,4 +76,6 @@ public class PartnerLineInfoAndBaseInfoDTO {
@ApiModelProperty("0不接受调剂、1全国调剂、2省内调剂、3市内调剂")
private Integer acceptAdjustType;
private String channelName;
}

View File

@@ -56,7 +56,7 @@ public class PartnerIntentApplyInfoVO {
private String deadline;
@ApiModelProperty("阶段提交时间")
private Date partnerSubmitTime;
private String partnerSubmitTime;
@ApiModelProperty("阶段状态")
private String WorkflowStatus;
@@ -72,7 +72,7 @@ public class PartnerIntentApplyInfoVO {
partnerIntentApplyInfoVO.setId(partnerIntentApplyInfoDTO.getId());
partnerIntentApplyInfoVO.setPartnerId(partnerIntentApplyInfoDTO.getPartnerId());
partnerIntentApplyInfoVO.setLineId(partnerIntentApplyInfoDTO.getPartnerLineId());
partnerIntentApplyInfoVO.setPartnerSubmitTime(partnerIntentApplyInfoDTO.getPartnerSubmitTime());
partnerIntentApplyInfoVO.setPartnerSubmitTime( DateUtil.format(partnerIntentApplyInfoDTO.getPartnerSubmitTime(), CoolDateUtils.DATE_FORMAT_SEC));
partnerIntentApplyInfoVO.setAcceptAdjustType(partnerIntentApplyInfoDTO.getAcceptAdjustType());
partnerIntentApplyInfoVO.setLiveArea(partnerIntentApplyInfoDTO.getLiveArea());
partnerIntentApplyInfoVO.setWantShopArea(partnerIntentApplyInfoDTO.getWantShopArea());

View File

@@ -31,7 +31,7 @@ public class PartnerInterviewInfoVO {
private String endTime;
@ApiModelProperty("截止时间")
private Date deadline;
private String deadline;
@ApiModelProperty("房间号")
private String roomId;
@@ -70,5 +70,5 @@ public class PartnerInterviewInfoVO {
private String authCode;
@ApiModelProperty("审批发起时间")
private Date approveTime;
private String approveTime;
}

View File

@@ -83,4 +83,7 @@ public class PartnerLineInfoAndBaseInfoVO {
@ApiModelProperty("0不接受调剂、1全国调剂、2省内调剂、3市内调剂")
private Integer acceptAdjustType;
@ApiModelProperty("线索来源名称")
private String channelName;
}