⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sentence.java

📁 使用spring+ibatis框架编写的单词卡片记忆系统。
💻 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 + -