package com.rongyichuang.player.dto.response;
|
|
/**
|
* 区域信息响应类
|
*/
|
public class RegionInfoResponse {
|
|
private Long id;
|
private String name;
|
private String fullPath;
|
|
public RegionInfoResponse() {}
|
|
public RegionInfoResponse(Long id, String name, String fullPath) {
|
this.id = id;
|
this.name = name;
|
this.fullPath = fullPath;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getFullPath() {
|
return fullPath;
|
}
|
|
public void setFullPath(String fullPath) {
|
this.fullPath = fullPath;
|
}
|
|
@Override
|
public String toString() {
|
return "RegionInfoResponse{" +
|
"id=" + id +
|
", name='" + name + '\'' +
|
", fullPath='" + fullPath + '\'' +
|
'}';
|
}
|
}
|