package com.newvideo.domain; 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 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 getVideoList() { return videoList; } public void setVideoList(List videoList) { this.videoList = videoList; } }