country.java
来自「Spring+acegi+ext2.0+mysql 开发 acegi做权限控制」· Java 代码 · 共 45 行
JAVA
45 行
package com.mypro.hibernate.bean;
/**
* Country entity.
*
* @author MyEclipse Persistence Tools
*/
public class Country implements java.io.Serializable {
// Fields
private Integer id;
private String name;
// Constructors
/** default constructor */
public Country() {
}
/** full constructor */
public Country(String name) {
this.name = name;
}
// 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 + -
显示快捷键?