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

📄 product.java.svn-base

📁 这个是我做j2ee培训的一个spring mvc的例子
💻 SVN-BASE
字号:
package org.hyq.springapp.bus;

import java.io.Serializable;

@SuppressWarnings("serial")
public class Product implements Serializable {

	private int id;
	
	private String description;

	private Double price;

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public void setDescription(String s) {
		description = s;
	}

	public String getDescription() {
		return description;
	}

	public void setPrice(Double d) {
		price = d;
	}

	public Double getPrice() {
		return price;
	}

}

⌨️ 快捷键说明

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