doum
2025-12-10 a7026e87d4f66195d872a00b7489fe78e6e7e4bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.doumee.dao.web.request;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotEmpty;
import java.io.Serializable;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/3/23 9:50
 */
@Data
@ApiModel("活动参加请求类")
public class ActivitySignRequest implements Serializable {
 
    @NotEmpty(message = "activityId 不能为空")
    @ApiModelProperty(value = "活动主键")
    private String activityId;
 
    @NotEmpty(message = "真实姓名 不能为空")
    @ApiModelProperty(value = "realName")
    private String realName;
 
    @NotEmpty(message = "手机号 不能为空")
    @ApiModelProperty(value = "phone")
    private String phone;
 
    @ApiModelProperty(value = "企业名称")
    private String companyName;
 
    @ApiModelProperty(value = "验证码")
    private String verificationCode;
 
    private Integer memberId;
 
}