Add File
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package org.dromara.easyai.entity;
|
||||
|
||||
public class KeyWordForSentence {//句子与它的关键词
|
||||
private String sentence;
|
||||
private String keyWord;
|
||||
|
||||
public String getSentence() {
|
||||
return sentence;
|
||||
}
|
||||
|
||||
public void setSentence(String sentence) {
|
||||
this.sentence = sentence;
|
||||
}
|
||||
|
||||
public String getKeyWord() {
|
||||
return keyWord;
|
||||
}
|
||||
|
||||
public void setKeyWord(String keyWord) {
|
||||
this.keyWord = keyWord;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user