lrj
2 天以前 c61d4fe27c97d2ecc907756aa571a4ef14a7b9b6
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
package com.rongyichuang.player.dto.response;
 
public class ActivityPlayerApplicationResponse {
    private Long id; // activity_player_id
    private String playerName;
    private String activityName;
    private String phone;
    private String applyTime; // ISO字符串
    private Integer state;
 
    public Long getId() { return id; }
    public void setId(Long id) { this.id = id; }
 
    public String getPlayerName() { return playerName; }
    public void setPlayerName(String playerName) { this.playerName = playerName; }
 
    public String getActivityName() { return activityName; }
    public void setActivityName(String activityName) { this.activityName = activityName; }
 
    public String getPhone() { return phone; }
    public void setPhone(String phone) { this.phone = phone; }
 
    public String getApplyTime() { return applyTime; }
    public void setApplyTime(String applyTime) { this.applyTime = applyTime; }
 
    public Integer getState() { return state; }
    public void setState(Integer state) { this.state = state; }
}