lrj
2 天以前 9f8395fab13ca4b230a0f7d62636e209745c91d4
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package com.rongyichuang.player.dto;
 
/**
 * 活动报名响应类型
 */
public class ActivityRegistrationResponse {
    
    private Boolean success;
    private String message;
    private Long registrationId;
    private Long playerId;
    private Long userId;
    private Long activityPlayerId;
    
    // 构造函数
    public ActivityRegistrationResponse() {}
    
    public ActivityRegistrationResponse(Boolean success, String message) {
        this.success = success;
        this.message = message;
    }
    
    public ActivityRegistrationResponse(Boolean success, String message, Long registrationId) {
        this.success = success;
        this.message = message;
        this.registrationId = registrationId;
    }
    
    public ActivityRegistrationResponse(Boolean success, String message, Long registrationId, Long playerId, Long userId) {
        this.success = success;
        this.message = message;
        this.registrationId = registrationId;
        this.playerId = playerId;
        this.userId = userId;
        this.activityPlayerId = registrationId; // registrationId就是activityPlayerId
    }
    
    public ActivityRegistrationResponse(Boolean success, String message, Long registrationId, Long playerId, Long userId, Long activityPlayerId) {
        this.success = success;
        this.message = message;
        this.registrationId = registrationId;
        this.playerId = playerId;
        this.userId = userId;
        this.activityPlayerId = activityPlayerId;
    }
    
    // 静态工厂方法
    public static ActivityRegistrationResponse success(String message, Long registrationId) {
        return new ActivityRegistrationResponse(true, message, registrationId);
    }
    
    public static ActivityRegistrationResponse success(String message, Long registrationId, Long playerId, Long userId) {
        return new ActivityRegistrationResponse(true, message, registrationId, playerId, userId);
    }
    
    public static ActivityRegistrationResponse error(String message) {
        return new ActivityRegistrationResponse(false, message);
    }
    
    // Getter和Setter方法
    public Boolean getSuccess() {
        return success;
    }
    
    public void setSuccess(Boolean success) {
        this.success = success;
    }
    
    public String getMessage() {
        return message;
    }
    
    public void setMessage(String message) {
        this.message = message;
    }
    
    public Long getRegistrationId() {
        return registrationId;
    }
    
    public void setRegistrationId(Long registrationId) {
        this.registrationId = registrationId;
    }
    
    public Long getPlayerId() {
        return playerId;
    }
    
    public void setPlayerId(Long playerId) {
        this.playerId = playerId;
    }
    
    public Long getUserId() {
        return userId;
    }
    
    public void setUserId(Long userId) {
        this.userId = userId;
    }
    
    public Long getActivityPlayerId() {
        return activityPlayerId;
    }
    
    public void setActivityPlayerId(Long activityPlayerId) {
        this.activityPlayerId = activityPlayerId;
    }
}