getInterviewInfoByLineId返回会销面试相关信息
This commit is contained in:
@@ -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;
|
||||
|
||||
}
|
||||
@@ -136,4 +136,13 @@ public class InterviewVO {
|
||||
@ApiModelProperty("该时段是否是自己预约的(不一定代表预约成功)")
|
||||
private Boolean selfBooked;
|
||||
|
||||
@ApiModelProperty("是否是通过会销进行的面试")
|
||||
private Boolean whetherExhibitionInterview;
|
||||
|
||||
@ApiModelProperty("参加的相应展会名称")
|
||||
private String exhibitionName;
|
||||
|
||||
@ApiModelProperty("展会日期")
|
||||
private String exhibitionDate;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user