getInterviewInfoByLineId返回会销面试相关信息

This commit is contained in:
feng.li
2023-12-08 10:26:59 +08:00
parent d32004de02
commit 444cab1efb
7 changed files with 113 additions and 10 deletions

View File

@@ -0,0 +1,26 @@
package com.cool.store.entity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @author Fun Li 2023/12/7 18:12
* @version 1.0
* 线索参加会销面试相关信息
*/
@Data
public class HyPartnerExhibitionInterviewDO {
@ApiModelProperty("会销id")
private Integer exhibitionId;
@ApiModelProperty("会销名")
private String exhibitionName;
@ApiModelProperty("会销日期")
private String exhibitionDate;
@ApiModelProperty("面试计划id")
private Long interviewPlanId;
}

View File

@@ -136,4 +136,13 @@ public class InterviewVO {
@ApiModelProperty("该时段是否是自己预约的(不一定代表预约成功)")
private Boolean selfBooked;
@ApiModelProperty("是否是通过会销进行的面试")
private Boolean whetherExhibitionInterview;
@ApiModelProperty("参加的相应展会名称")
private String exhibitionName;
@ApiModelProperty("展会日期")
private String exhibitionDate;
}