会销报名列表
This commit is contained in:
@@ -16,6 +16,24 @@ public class ExhibitionLineDTO {
|
||||
|
||||
private String mobile;
|
||||
|
||||
private String exhibitionCode;
|
||||
private String exhibitionId;
|
||||
|
||||
private Integer lineId;
|
||||
|
||||
private Integer wantShopArea;
|
||||
|
||||
private Integer wantShopAreaName;
|
||||
|
||||
private Integer participationStatus;
|
||||
|
||||
private String channelName;
|
||||
|
||||
private Integer id;
|
||||
|
||||
private Integer expectedVisitorsCount;
|
||||
|
||||
private String expectedInformation;
|
||||
|
||||
private String customerManager;
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
package com.cool.store.dto.partner;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2023/12/7 16:28
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
public class LineInterviewDTO {
|
||||
|
||||
private Integer lineId;
|
||||
|
||||
private String investmentManager;
|
||||
|
||||
private String investmentManagerName;
|
||||
|
||||
private String investmentManagerMobile;
|
||||
|
||||
private String interviewer;
|
||||
|
||||
private String interviewerName;
|
||||
|
||||
private String interviewerMobile;
|
||||
}
|
||||
@@ -56,6 +56,9 @@ public class HyPartnerExhibitionDO implements Serializable {
|
||||
@ApiModelProperty("更新时间")
|
||||
private Date updateTime;
|
||||
|
||||
@ApiModelProperty("签到时间")
|
||||
private Date checkInTime;
|
||||
|
||||
@ApiModelProperty("创建人user_id,enterprise_user.user_id")
|
||||
private String creator;
|
||||
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
package com.cool.store.vo.exhibition;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2023/12/6 17:13
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
public class ExhibitionLineVO {
|
||||
|
||||
private String partnerId;
|
||||
|
||||
private String partnerName;
|
||||
|
||||
private String mobile;
|
||||
|
||||
private String exhibitionId;
|
||||
|
||||
private Integer lineId;
|
||||
|
||||
private Integer wantShopArea;
|
||||
|
||||
private Integer wantShopAreaName;
|
||||
|
||||
private Integer participationStatus;
|
||||
|
||||
private String channelName;
|
||||
|
||||
private Integer id;
|
||||
|
||||
private Integer expectedVisitorsCount;
|
||||
|
||||
private String expectedInformation;
|
||||
|
||||
private String investmentManager;
|
||||
|
||||
private String investmentManagerName;
|
||||
|
||||
private String investmentManagerMobile;
|
||||
|
||||
private String customerManager;
|
||||
|
||||
private String interviewer;
|
||||
|
||||
private String interviewerName;
|
||||
|
||||
private String interviewerMobile;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user