admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
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
package com.yeshi.buwan.domain;
 
import com.yeshi.buwan.domain.system.SystemInfo;
 
import java.util.List;
 
import javax.persistence.Entity;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
 
@Entity
public class SystemVideo {
    private String id;
    @ManyToOne
    private SystemInfo system;
    @OneToMany
    private List<VideoInfo> videoList;
    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 List<VideoInfo> getVideoList() {
        return videoList;
    }
    public void setVideoList(List<VideoInfo> videoList) {
        this.videoList = videoList;
    }
}