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

📄 history.java

📁 ktv点歌系统前台收银有开包房
💻 JAVA
字号:
package com.ktv.entity;

import java.util.Date;
import java.util.Iterator;


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

public class History  implements java.io.Serializable {


    // Fields    

     /**
	 * 
	 */
	private static final long serialVersionUID = -3680577175683073538L;
	private Integer historyId;
    private Box box;
     private Date beginTime;
     private Date endTime;
     private Double historyAllPrice;
     private String historyRemark;


    // Constructors

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

    
    /** full constructor */
    public History(Integer boxId, Date beginTime, Date endTime, Double historyAllPrice, String historyRemark) {
  
        this.beginTime = beginTime;
        this.endTime = endTime;
        this.historyAllPrice = historyAllPrice;
        this.historyRemark = historyRemark;
    }

   
    // Property accessors

    public Integer getHistoryId() {
        return this.historyId;
    }
    
    public void setHistoryId(Integer historyId) {
        this.historyId = historyId;
    }

    public Date getBeginTime() {
        return this.beginTime;
    }
    
    public void setBeginTime(Date beginTime) {
        this.beginTime = beginTime;
    }

    public Date getEndTime() {
        return this.endTime;
    }
    
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }

    public Double getHistoryAllPrice() {
        return this.historyAllPrice;
    }
    
    public void setHistoryAllPrice(Double historyAllPrice) {
        this.historyAllPrice = historyAllPrice;
    }

    public String getHistoryRemark() {
        return this.historyRemark;
    }
    
    public void setHistoryRemark(String historyRemark) {
        this.historyRemark = historyRemark;
    }


	public Box getBox() {
		return box;
	}


	public void setBox(Box box) {
		this.box = box;
	}


   








}

⌨️ 快捷键说明

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