意向基本信息字段微调
This commit is contained in:
@@ -3,6 +3,8 @@ package com.cool.store.dto.partner;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2023/6/12 16:05
|
||||
@@ -43,5 +45,21 @@ public class PartnerLineInfoAndBaseInfoDTO {
|
||||
@ApiModelProperty("招商经理手机号")
|
||||
private String investmentManagerPhone;
|
||||
@ApiModelProperty("用户画像")
|
||||
|
||||
private String userPortrait;
|
||||
|
||||
@ApiModelProperty("通过原因")
|
||||
private String passCause;
|
||||
|
||||
@ApiModelProperty("通过时间")
|
||||
private Date passTime;
|
||||
|
||||
@ApiModelProperty("通过人名称")
|
||||
private String passUserName;
|
||||
|
||||
@ApiModelProperty("通过人ID")
|
||||
private String passUserId;
|
||||
|
||||
@ApiModelProperty("通过证明")
|
||||
private String passCertifyFile;
|
||||
}
|
||||
|
||||
@@ -88,19 +88,5 @@ public class PartnerIntentInfoVO {
|
||||
@ApiModelProperty("创建时间")
|
||||
private Date createTime;
|
||||
|
||||
@ApiModelProperty("通过原因")
|
||||
private String passCause;
|
||||
|
||||
@ApiModelProperty("通过时间")
|
||||
private Date passTime;
|
||||
|
||||
@ApiModelProperty("通过人名称")
|
||||
private String passUserName;
|
||||
|
||||
@ApiModelProperty("通过人ID")
|
||||
private String passUserId;
|
||||
|
||||
@ApiModelProperty("通过证明")
|
||||
private String passCertifyFile;
|
||||
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@ import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
@@ -46,8 +47,25 @@ public class PartnerLineInfoAndBaseInfoVO {
|
||||
|
||||
@ApiModelProperty("招商经理手机号")
|
||||
private String investmentManagerPhone;
|
||||
|
||||
@ApiModelProperty("用户画像")
|
||||
private String userPortrait;
|
||||
|
||||
@ApiModelProperty("线索状态")
|
||||
private Integer lineStatus;
|
||||
|
||||
@ApiModelProperty("通过原因")
|
||||
private String passCause;
|
||||
|
||||
@ApiModelProperty("通过时间")
|
||||
private Date passTime;
|
||||
|
||||
@ApiModelProperty("通过人名称")
|
||||
private String passUserName;
|
||||
|
||||
@ApiModelProperty("通过人ID")
|
||||
private String passUserId;
|
||||
|
||||
@ApiModelProperty("通过证明")
|
||||
private List<String> passCertifyFile;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user