person.java

来自「hibernate 开源框架的代码 jar包希望大家能喜欢」· Java 代码 · 共 21 行

JAVA
21
字号
//$Id: Person.java 7587 2005-07-21 01:22:38Z oneovthafew $
package org.hibernate.test.propertyref.component.partial;

public class Person {
	private Long id;
	private Identity identity;
	
	public Long getId() {
		return id;
	}
	public void setId(Long id) {
		this.id = id;
	}
	public Identity getIdentity() {
		return identity;
	}
	public void setIdentity(Identity identity) {
		this.identity = identity;
	}
}

⌨️ 快捷键说明

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