📄 albumvo.java
字号:
package music.shared;
import java.util.Date;
public class AlbumVO implements java.io.Serializable
{
private int id;
private String title;
private String genre;
private Date release;
public AlbumVO(int id, String title, String genre, java.util.Date release) {
this.id = id;
this.title = title;
this.genre = genre;
this.release = release;
}
public int getId() { return this.id; }
public void setId(int id) { this.id = id; }
public String getTitle() { return this.title; }
public void setTitle(String title) { this.title = title; }
public String getGenre() { return this.genre; }
public void setGenre(String genre) { this.genre = genre; }
public Date getRelease() { return this.release; }
public void setRelease(Date release) { this.release = release; }
public String toString() { return this.title; }
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -