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

📄 abstractcustomerorder.java

📁 利用Java开发的网上书店系统
💻 JAVA
字号:
package com.ascent.bean;



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

public abstract class AbstractCustomerorder  implements java.io.Serializable {


    // Fields    

     private Integer custorderId;
     private String custorderName;
     private String telephone;
     private String address;
     private Integer post;
     private String email;
     private Integer orderId;


    // Constructors

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

    
    /** full constructor */
    public AbstractCustomerorder(Integer custorderId, String custorderName, String telephone, String address, Integer post, String email, Integer orderId) {
        this.custorderId = custorderId;
        this.custorderName = custorderName;
        this.telephone = telephone;
        this.address = address;
        this.post = post;
        this.email = email;
        this.orderId = orderId;
    }

   
    // Property accessors

    public Integer getCustorderId() {
        return this.custorderId;
    }
    
    public void setCustorderId(Integer custorderId) {
        this.custorderId = custorderId;
    }

    public String getCustorderName() {
        return this.custorderName;
    }
    
    public void setCustorderName(String custorderName) {
        this.custorderName = custorderName;
    }

    public String getTelephone() {
        return this.telephone;
    }
    
    public void setTelephone(String telephone) {
        this.telephone = telephone;
    }

    public String getAddress() {
        return this.address;
    }
    
    public void setAddress(String address) {
        this.address = address;
    }

    public Integer getPost() {
        return this.post;
    }
    
    public void setPost(Integer post) {
        this.post = post;
    }

    public String getEmail() {
        return this.email;
    }
    
    public void setEmail(String email) {
        this.email = email;
    }

    public Integer getOrderId() {
        return this.orderId;
    }
    
    public void setOrderId(Integer orderId) {
        this.orderId = orderId;
    }
   








}

⌨️ 快捷键说明

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