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

📄 auctioninfo.java

📁 介绍了hibernate的入门有一些基本常用的事例
💻 JAVA
字号:
//$Id: AuctionInfo.java,v 1.1 2004/06/03 16:30:01 steveebersole Exp $package org.hibernate.auction;import java.util.Date;/** * @author Gavin King */public class AuctionInfo {	private long id;	private String description;	private Date ends;	private Float maxAmount;	public String getDescription() {		return description;	}	public Date getEnds() {		return ends;	}	public long getId() {		return id;	}	public Float getMaxAmount() {		return maxAmount;	}		public AuctionInfo(long id, String description, Date ends, Float maxAmount) {		this.id = id;		this.description = description;		this.ends = ends;		this.maxAmount = maxAmount;	}}

⌨️ 快捷键说明

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