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; }
|
}
|