abstracttcustomer.java

来自「移动通信的一个项目。 里面是一个模块 用到了 SPRING HIBERNATE」· Java 代码 · 共 119 行

JAVA
119
字号
package po;

import java.util.HashSet;
import java.util.Set;


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

public abstract class AbstractTcustomer  implements java.io.Serializable {


    // Fields    

     private Long customerId;
     private String idType;
     private String idNumber;
     private String customerName;
     private String customerBirtyday;
     private String customerSex;
     private String customerAddress;
     private Set tusers = new HashSet(0);


    // Constructors

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

    
    /** full constructor */
    public AbstractTcustomer(String idType, String idNumber, String customerName, String customerBirtyday, String customerSex, String customerAddress, Set tusers) {
        this.idType = idType;
        this.idNumber = idNumber;
        this.customerName = customerName;
        this.customerBirtyday = customerBirtyday;
        this.customerSex = customerSex;
        this.customerAddress = customerAddress;
        this.tusers = tusers;
    }

   
    // Property accessors

    public Long getCustomerId() {
        return this.customerId;
    }
    
    public void setCustomerId(Long customerId) {
        this.customerId = customerId;
    }

    public String getIdType() {
        return this.idType;
    }
    
    public void setIdType(String idType) {
        this.idType = idType;
    }

    public String getIdNumber() {
        return this.idNumber;
    }
    
    public void setIdNumber(String idNumber) {
        this.idNumber = idNumber;
    }

    public String getCustomerName() {
        return this.customerName;
    }
    
    public void setCustomerName(String customerName) {
        this.customerName = customerName;
    }

    public String getCustomerBirtyday() {
        return this.customerBirtyday;
    }
    
    public void setCustomerBirtyday(String customerBirtyday) {
        this.customerBirtyday = customerBirtyday;
    }

    public String getCustomerSex() {
        return this.customerSex;
    }
    
    public void setCustomerSex(String customerSex) {
        this.customerSex = customerSex;
    }

    public String getCustomerAddress() {
        return this.customerAddress;
    }
    
    public void setCustomerAddress(String customerAddress) {
        this.customerAddress = customerAddress;
    }

    public Set getTusers() {
        return this.tusers;
    }
    
    public void setTusers(Set tusers) {
        this.tusers = tusers;
    }
   








}

⌨️ 快捷键说明

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