lxfworkshopproduct.java~

来自「该车间信息管理系统」· JAVA~ 代码 · 共 97 行

JAVA~
97
字号
package com.briup.bean;

import java.util.Date;


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

public class LxfWorkshopProduct  implements java.io.Serializable {


    // Fields    

     private long id;
     private LxfWorkshopRoom lxfWorkshopRoom;
     private String productname;
     private String type;
     private long quantity;
     private Date finishtime;


    // Constructors

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

	/** minimal constructor */
    public LxfWorkshopProduct(String productname, String type, long quantity, Date finishtime) {
        this.productname = productname;
        this.type = type;
        this.quantity = quantity;
        this.finishtime = finishtime;
    }
    
    /** full constructor */
    public LxfWorkshopProduct(LxfWorkshopRoom lxfWorkshopRoom, String productname, String type, long quantity, Date finishtime) {
        this.lxfWorkshopRoom = lxfWorkshopRoom;
        this.productname = productname;
        this.type = type;
        this.quantity = quantity;
        this.finishtime = finishtime;
    }

   
    // Property accessors

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

    public LxfWorkshopRoom getLxfWorkshopRoom() {
        return this.lxfWorkshopRoom;
    }
    
    public void setLxfWorkshopRoom(LxfWorkshopRoom lxfWorkshopRoom) {
        this.lxfWorkshopRoom = lxfWorkshopRoom;
    }

    public String getProductname() {
        return this.productname;
    }
    
    public void setProductname(String productname) {
        this.productname = productname;
    }

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

    public long getQuantity() {
        return this.quantity;
    }
    
    public void setQuantity(long quantity) {
        this.quantity = quantity;
    }

    public Date getFinishtime() {
        return this.finishtime;
    }
    
    public void setFinishtime(Date finishtime) {
        this.finishtime = finishtime;
    }
  }

⌨️ 快捷键说明

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