notice.java
来自「本文论述了一个前台笔记本销售系统的开发过程」· Java 代码 · 共 40 行
JAVA
40 行
package com.set.home.model;
import java.io.Serializable;
public class Notice implements Serializable {
private String id;
private String content;
private long createdDate;
public Notice() {
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public long getCreatedDate() {
return createdDate;
}
public void setCreatedDate(long createdDate) {
this.createdDate = createdDate;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?