tbnation.java

来自「JAVA开发的企业人事管理系统,含有详细的开发文档,可做毕业设计.」· Java 代码 · 共 37 行

JAVA
37
字号
package com.mwq.hibernate.mapping;

import java.util.HashSet;
import java.util.Set;

public class TbNation implements java.io.Serializable {

	// Fields

	private Integer id;

	private String name;

	// Constructors

	public TbNation() {
	}

	// Property accessors

	public Integer getId() {
		return this.id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getName() {
		return this.name;
	}

	public void setName(String name) {
		this.name = name;
	}

}

⌨️ 快捷键说明

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