account.java

来自「本项目源码是一个真实的应用项目」· Java 代码 · 共 58 行

JAVA
58
字号
package org.langsin.computer.vo;



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

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


    // Fields    

     private Integer acountid;
     private Customer customer;


    // Constructors

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

    
    /** full constructor */
    public Account(Customer customer) {
        this.customer = customer;
    }

   
    // Property accessors

    public Integer getAcountid() {
        return this.acountid;
    }
    
    public void setAcountid(Integer acountid) {
        this.acountid = acountid;
    }

    public Customer getCustomer() {
        return this.customer;
    }
    
    public void setCustomer(Customer customer) {
        this.customer = customer;
    }
   








}

⌨️ 快捷键说明

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