⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 a.java

📁 Hibernate Annotations Sample
💻 JAVA
字号:
//$package org.hibernate.test.annotations.idmanytoone.alphabetical;import java.util.List;import javax.persistence.Entity;import javax.persistence.Id;import javax.persistence.OneToMany;@Entitypublic class A {	@Id	private int id;	@OneToMany( mappedBy = "parent" )	List<C> children;	public A() {	}	public int getId() {		return id;	}	public void setId(int id) {		this.id = id;	}	public List<C> getChildren() {		return children;	}	public void setChildren(List<C> children) {		this.children = children;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -