会销报名线索列表

This commit is contained in:
苏竹红
2023-12-08 17:46:24 +08:00
parent 6cb06899d0
commit 79bb2a6059
8 changed files with 104 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
package com.cool.store.dto.exhibition;
import lombok.Data;
/**
* @Author suzhuhong
* @Date 2023/12/8 16:56
* @Version 1.0
*/
@Data
public class ExhibitionLineBaseDTO {
private String partnerName;
private String mobile;
private String partnerId;
private Integer participationStatus;
}

View File

@@ -0,0 +1,21 @@
package com.cool.store.vo.exhibition;
import lombok.Data;
/**
* @Author suzhuhong
* @Date 2023/12/8 16:54
* @Version 1.0
*/
@Data
public class ExhibitionLineBaseVO {
private String partnerName;
private String mobile;
private String partnerId;
private Integer participationStatus;
}