package com.yeshi.buwan.domain;
|
|
import javax.persistence.Entity;
|
import javax.persistence.ManyToOne;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.buwan.domain.system.DetailSystem;
|
import com.yeshi.buwan.domain.system.SystemInfo;
|
|
import java.io.Serializable;
|
|
@Entity
|
public class ShareContent implements Serializable {
|
public ShareContent(String id) {
|
this.id = id;
|
}
|
|
public ShareContent() {
|
|
}
|
@Expose
|
private String id;
|
@ManyToOne
|
private SystemInfo system;
|
@Expose
|
private String shareUrl;
|
@Expose
|
private String shareContent;
|
@Expose
|
private String createtime;
|
@Expose
|
private String beizhu;
|
@ManyToOne
|
@Expose
|
private AdminInfo admin;
|
@Expose
|
private DetailSystem detailSystem;
|
|
public DetailSystem getDetailSystem() {
|
return detailSystem;
|
}
|
|
public void setDetailSystem(DetailSystem detailSystem) {
|
this.detailSystem = detailSystem;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public SystemInfo getSystem() {
|
return system;
|
}
|
|
public void setSystem(SystemInfo system) {
|
this.system = system;
|
}
|
|
public String getShareUrl() {
|
return shareUrl;
|
}
|
|
public void setShareUrl(String shareUrl) {
|
this.shareUrl = shareUrl;
|
}
|
|
public String getShareContent() {
|
return shareContent;
|
}
|
|
public void setShareContent(String shareContent) {
|
this.shareContent = shareContent;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
public String getBeizhu() {
|
return beizhu;
|
}
|
|
public void setBeizhu(String beizhu) {
|
this.beizhu = beizhu;
|
}
|
|
public AdminInfo getAdmin() {
|
return admin;
|
}
|
|
public void setAdmin(AdminInfo admin) {
|
this.admin = admin;
|
}
|
|
}
|