会销开始面试接口

This commit is contained in:
feng.li
2023-12-06 18:42:18 +08:00
parent 8d096b4f27
commit acda73ffc1
19 changed files with 374 additions and 28 deletions

View File

@@ -0,0 +1,19 @@
package com.cool.store.dto.exhibition;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @author Fun Li 2023/11/30 15:03
* @version 1.0
*/
@Data
public class ExhibitionEnterInterviewDTO {
@ApiModelProperty("线索id")
private String partnerLineId;
@ApiModelProperty("会销编号")
private String exhibitionCode;
}

View File

@@ -65,6 +65,9 @@ public class PartnerLineInfoAndBaseInfoDTO {
private Integer lineStatus;
@ApiModelProperty("是否处在会销中")
private Boolean whetherInExhibition;
@ApiModelProperty("常驻区域")
private String liveArea;

View File

@@ -35,6 +35,9 @@ public class HyPartnerLineInfoDO implements Serializable {
@ApiModelProperty("线索状态:0公海线索;1跟进中;2合作中;3黑名单")
private Integer lineStatus;
@ApiModelProperty("是否处在会销中")
private Boolean whetherInExhibition;
@ApiModelProperty("招商经理")
private String investmentManager;