admin
2024-10-30 010ef2a907e66efd4702443c06cdd18f8a7ffa5b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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;
    }
 
}