25,980
社区成员
发帖
与我相关
我的任务
分享@XmlRootElement(name = "a")
public class Info {
protected String a_type;
protected String o_type;
protected String e_id;
protected String a_id;
@XmlAttribute(required = true)
public String geta_id() {
return a_id;
}
public void seta_id(String a_id) {
this.a_id= a_id;
}
@XmlAttribute(required = true)
public String geta_type() {
return a_type;
}
public void seta_type(String a_type) {
this.a_type= a_type;
}
@XmlAttribute(required = true)
public String geto_type() {
return o_type;
}
public void seto_type(String o_type) {
this.o_type= o_type;
}
@XmlAttribute(required = true)
public String gete_id() {
return e_id;
}
public void sete_id(String e_id) {
this.e_id= e_id;
}
}