package com.moon.server.entity.all;
|
|
import java.io.Serializable;
|
|
/**
|
* 资源授权
|
* @author WWW
|
*/
|
public class ResAuthEntity implements Serializable {
|
private static final long serialVersionUID = 7610553267313397837L;
|
|
private Integer id;
|
|
private String name;
|
|
private String url;
|
|
private String proxy;
|
|
public ResAuthEntity() {
|
}
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public String getProxy() {
|
return proxy;
|
}
|
|
public void setProxy(String proxy) {
|
this.proxy = proxy;
|
}
|
}
|