account.java

来自「Spring声明式事务实例」· Java 代码 · 共 68 行

JAVA
68
字号
package org.thj;



/**
 * Account generated by MyEclipse - Hibernate Tools
 */

@SuppressWarnings("serial")
public class Account  implements java.io.Serializable {


    // Fields    

     private Integer accountid;
     private String accountname;
     private Integer money;


    // Constructors

    /** default constructor */
    public Account() {
    }

    
    /** full constructor */
    public Account(String accountname, Integer money) {
        this.accountname = accountname;
        this.money = money;
    }

   
    // Property accessors

    public Integer getAccountid() {
        return this.accountid;
    }
    
    public void setAccountid(Integer accountid) {
        this.accountid = accountid;
    }

    public String getAccountname() {
        return this.accountname;
    }
    
    public void setAccountname(String accountname) {
        this.accountname = accountname;
    }

    public Integer getMoney() {
        return this.money;
    }
    
    public void setMoney(Integer money) {
        this.money = money;
    }
   








}

⌨️ 快捷键说明

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