⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 account.java

📁 Spring声明式事务实例
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -