📄 sentence.java
字号:
package cn.avl.wordcard.domain;
public class Sentence {
private String expID;
private String sentence;
private String translation;
public Sentence(){}
public Sentence(String expID){
this.expID = expID;
}
public Sentence(String expID,String sentence){
this.expID = expID;
this.sentence = sentence;
}
public Sentence(String expID,String sentence,String translation){
this.expID = expID;
this.sentence = sentence;
this.translation = translation;
}
public String getExpID() {
return expID;
}
public void setExpID(String expID) {
this.expID = expID;
}
public String getSentence() {
return sentence;
}
public void setSentence(String sentence) {
this.sentence = sentence;
}
public String getTranslation() {
return translation;
}
public void setTranslation(String translation) {
this.translation = translation;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -