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

📄 result.java

📁 介绍了hibernate的入门有一些基本常用的事例
💻 JAVA
字号:
package org.hibernate.test.legacy;public class Result {	private String name;	private long amount;	private int count;	/**	 * Returns the amount.	 * @return long	 */	public long getAmount() {		return amount;	}	/**	 * Returns the count.	 * @return int	 */	public int getCount() {		return count;	}	/**	 * Returns the name.	 * @return String	 */	public String getName() {		return name;	}	/**	 * Sets the amount.	 * @param amount The amount to set	 */	public void setAmount(long amount) {		this.amount = amount;	}	/**	 * Sets the count.	 * @param count The count to set	 */	public void setCount(int count) {		this.count = count;	}	/**	 * Sets the name.	 * @param name The name to set	 */	public void setName(String name) {		this.name = name;	}		public Result(String n, long a, int c) {		name = n;		amount = a;		count = c;	}}

⌨️ 快捷键说明

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