会销报名+取消报名
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package com.cool.store.dto.exhibition;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2023/12/11 11:11
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
public class SignUpExhibitionDTO {
|
||||
|
||||
private String partnerName;
|
||||
|
||||
private String mobile;
|
||||
|
||||
private String wantShopArea;
|
||||
|
||||
private String intendedAccountManager;
|
||||
|
||||
private Integer exhibitionId;
|
||||
|
||||
private Integer expectedVisitorsCount;
|
||||
|
||||
private String expectedInformation;
|
||||
}
|
||||
@@ -14,7 +14,12 @@ public class MobileCheckDTO {
|
||||
private String partnerId;
|
||||
private String mobile;
|
||||
private Integer lineStatus;
|
||||
private String workflowStage;
|
||||
private String workflowStatus;
|
||||
private String closeTime;
|
||||
private String investmentManager;
|
||||
private Long lineId;
|
||||
private String partnerName;
|
||||
|
||||
private String investmentManagerMobile;
|
||||
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.cool.store.vo.exhibition;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2023/12/11 11:09
|
||||
* @Version 1.0
|
||||
*/
|
||||
@Data
|
||||
public class SignUpExhibitionVO {
|
||||
|
||||
private Boolean signUpStatus;
|
||||
|
||||
private Integer signUpFailCode;
|
||||
|
||||
private String signUpFailMsg;
|
||||
|
||||
public SignUpExhibitionVO(Boolean signUpStatus, Integer signUpFailCode,String signUpFailMsg) {
|
||||
this.signUpStatus = signUpStatus;
|
||||
this.signUpFailCode = signUpFailCode;
|
||||
this.signUpFailMsg = signUpFailMsg;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user