package com.yeshi.buwan.domain;
|
|
import javax.persistence.Entity;
|
import javax.persistence.ManyToOne;
|
|
@Entity
|
public class LeShiUrl {
|
private String id;
|
private String vid;
|
private String realUrl;
|
private String updateTime;
|
private String beizhu;
|
|
@ManyToOne
|
private LeShiAccount account;
|
|
public LeShiAccount getAccount() {
|
return account;
|
}
|
|
public void setAccount(LeShiAccount account) {
|
this.account = account;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getVid() {
|
return vid;
|
}
|
|
public void setVid(String vid) {
|
this.vid = vid;
|
}
|
|
public String getRealUrl() {
|
return realUrl;
|
}
|
|
public void setRealUrl(String realUrl) {
|
this.realUrl = realUrl;
|
}
|
|
public String getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(String updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public String getBeizhu() {
|
return beizhu;
|
}
|
|
public void setBeizhu(String beizhu) {
|
this.beizhu = beizhu;
|
}
|
|
}
|