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

📄 order.java

📁 很好的东东 本人随便做的 仅供学习之用
💻 JAVA
字号:
package kefu.javabeans;

import java.util.Date;


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

public class Order  implements java.io.Serializable {


    // Fields    

     private Long id;
     private Long customerId;
     private String customername;
     private Long sellId;
     private String sell;
     private Date ordertime;
     private Long principalId;
     private String principal;
     private String status;
     private String type;
     private Date verifytime;
     private String address;


    // Constructors

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

	/** minimal constructor */
    public Order(Long id) {
        this.id = id;
    }
    
    /** full constructor */
    public Order(Long id, Long customerId, String customername, Long sellId, String sell, Date ordertime, Long principalId, String principal, String status, String type, Date verifytime, String address) {
        this.id = id;
        this.customerId = customerId;
        this.customername = customername;
        this.sellId = sellId;
        this.sell = sell;
        this.ordertime = ordertime;
        this.principalId = principalId;
        this.principal = principal;
        this.status = status;
        this.type = type;
        this.verifytime = verifytime;
        this.address = address;
    }

   
    // Property accessors

    public Long getId() {
        return this.id;
    }
    
    public void setId(Long id) {
        this.id = id;
    }

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

    public String getCustomername() {
        return this.customername;
    }
    
    public void setCustomername(String customername) {
        this.customername = customername;
    }

    public Long getSellId() {
        return this.sellId;
    }
    
    public void setSellId(Long sellId) {
        this.sellId = sellId;
    }

    public String getSell() {
        return this.sell;
    }
    
    public void setSell(String sell) {
        this.sell = sell;
    }

    public Date getOrdertime() {
        return this.ordertime;
    }
    
    public void setOrdertime(Date ordertime) {
        this.ordertime = ordertime;
    }

    public Long getPrincipalId() {
        return this.principalId;
    }
    
    public void setPrincipalId(Long principalId) {
        this.principalId = principalId;
    }

    public String getPrincipal() {
        return this.principal;
    }
    
    public void setPrincipal(String principal) {
        this.principal = principal;
    }

    public String getStatus() {
        return this.status;
    }
    
    public void setStatus(String status) {
        this.status = status;
    }

    public String getType() {
        return this.type;
    }
    
    public void setType(String type) {
        this.type = type;
    }

    public Date getVerifytime() {
        return this.verifytime;
    }
    
    public void setVerifytime(Date verifytime) {
        this.verifytime = verifytime;
    }

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








}

⌨️ 快捷键说明

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