You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
548 B
31 lines
548 B
package xyz.fycz.myreader.entity;
|
|
|
|
/**
|
|
* @author fengyue
|
|
* @date 2021/6/12 20:55
|
|
*/
|
|
public class Quotation {
|
|
private String hitokoto;
|
|
private String from;
|
|
|
|
public String getHitokoto() {
|
|
return hitokoto;
|
|
}
|
|
|
|
public void setHitokoto(String hitokoto) {
|
|
this.hitokoto = hitokoto;
|
|
}
|
|
|
|
public String getFrom() {
|
|
return from;
|
|
}
|
|
|
|
public void setFrom(String from) {
|
|
this.from = from;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return hitokoto + " --- " + from;
|
|
}
|
|
}
|
|
|