tbcountry.java

来自「一个TSH(tapestry+Hibernate+Spring)配置例子」· Java 代码 · 共 67 行

JAVA
67
字号
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 + =
减小字号Ctrl + -
显示快捷键?