sentence.java

来自「使用spring+ibatis框架编写的单词卡片记忆系统。」· Java 代码 · 共 42 行

JAVA
42
字号
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 + =
减小字号Ctrl + -
显示快捷键?