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

📄 mp3.java

📁 mp3购物网站 使用struts框架
💻 JAVA
字号:
package com.yourcompany.dto;

import java.io.Serializable;

public class MP3 implements Serializable {
	private String id;
	private String type;
	private String price;
	private String quantity;

	public MP3() {
		super();

	}

	public MP3(String id, String type, String price) {
		super();
		this.id = id;
		this.type = type;
		this.price = price;
	}

	public MP3(String id, String type, String price, String quantity) {
		super();
		this.id = id;
		this.type = type;
		this.price = price;
		this.quantity = quantity;
	}

	public String getId() {
		return id;
	}

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

	public String getType() {
		return type;
	}

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

	public String getPrice() {
		return price;
	}

	public void setPrice(String price) {
		this.price = price;
	}

	public String getQuantity() {
		return quantity;
	}

	public void setQuantity(String quantity) {
		this.quantity = quantity;
	}
}

⌨️ 快捷键说明

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