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

📄 orderdetail.java

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



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

public class Orderdetail  implements java.io.Serializable {


    // Fields    

     private Long id;
     private Long orderId;
     private Long drugId;
     private Long counts;
     private String drugname;


    // Constructors

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

    
    /** full constructor */
    public Orderdetail(Long id, Long orderId, Long drugId, Long counts, String drugname) {
        this.id = id;
        this.orderId = orderId;
        this.drugId = drugId;
        this.counts = counts;
        this.drugname = drugname;
    }

   
    // Property accessors

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

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

    public Long getDrugId() {
        return this.drugId;
    }
    
    public void setDrugId(Long drugId) {
        this.drugId = drugId;
    }

    public Long getCounts() {
        return this.counts;
    }
    
    public void setCounts(Long counts) {
        this.counts = counts;
    }

    public String getDrugname() {
        return this.drugname;
    }
    
    public void setDrugname(String drugname) {
        this.drugname = drugname;
    }
   








}

⌨️ 快捷键说明

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