Add File
This commit is contained in:
22
src/main/java/org/dromara/easyai/entity/TalkBody.java
Normal file
22
src/main/java/org/dromara/easyai/entity/TalkBody.java
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
package org.dromara.easyai.entity;
|
||||||
|
|
||||||
|
public class TalkBody {
|
||||||
|
private String question;
|
||||||
|
private String answer;
|
||||||
|
|
||||||
|
public String getQuestion() {
|
||||||
|
return question;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setQuestion(String question) {
|
||||||
|
this.question = question;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAnswer() {
|
||||||
|
return answer;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAnswer(String answer) {
|
||||||
|
this.answer = answer;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user