📄 mp3.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 + -