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.
65 lines
1.2 KiB
65 lines
1.2 KiB
package net.micode.notes.translate;
|
|
|
|
import java.util.List;
|
|
|
|
public class RespondBean {
|
|
|
|
/**
|
|
* from : zh
|
|
* to : en
|
|
* trans_result : [{"src":"你好","dst":"Hello"}]
|
|
*/
|
|
|
|
private String from;
|
|
private String to;
|
|
private List<TransResultBean> trans_result;
|
|
|
|
public String getFrom() {
|
|
return from;
|
|
}
|
|
|
|
public void setFrom(String from) {
|
|
this.from = from;
|
|
}
|
|
|
|
public String getTo() {
|
|
return to;
|
|
}
|
|
|
|
public void setTo(String to) {
|
|
this.to = to;
|
|
}
|
|
|
|
public List<TransResultBean> getTrans_result() {
|
|
return trans_result;
|
|
}
|
|
|
|
public void setTrans_result(List<TransResultBean> trans_result) {
|
|
this.trans_result = trans_result;
|
|
}
|
|
|
|
public static class TransResultBean {
|
|
/**
|
|
* src : 你好
|
|
* dst : Hello
|
|
*/
|
|
private String src;
|
|
private String dst;
|
|
|
|
public String getSrc() {
|
|
return src;
|
|
}
|
|
|
|
public void setSrc(String src) {
|
|
this.src = src;
|
|
}
|
|
|
|
public String getDst() {
|
|
return dst;
|
|
}
|
|
|
|
public void setDst(String dst) {
|
|
this.dst = dst;
|
|
}
|
|
}
|
|
} |