📄 tbcountry.java
字号:
package com.Chang.service.dao.hibernate.po;
/**
* Tbcountry generated by MyEclipse - Hibernate Tools
*/
public class Tbcountry implements java.io.Serializable {
// Fields
private Integer countryId;
private String countryName;
private String countryRemark;
// Constructors
/** default constructor */
public Tbcountry() {
}
/** constructor with id */
public Tbcountry(Integer countryId) {
this.countryId = countryId;
}
// Property accessors
public Integer getCountryId() {
return this.countryId;
}
public void setCountryId(Integer countryId) {
this.countryId = countryId;
}
public String getCountryName() {
return this.countryName;
}
public void setCountryName(String countryName) {
this.countryName = countryName;
}
public String getCountryRemark() {
return this.countryRemark;
}
public void setCountryRemark(String countryRemark) {
this.countryRemark = countryRemark;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -