ResBody.java 413 B

12345678910111213141516171819
  1. package com.diagbot.yujian.model;
  2. import javax.xml.bind.annotation.XmlAccessType;
  3. import javax.xml.bind.annotation.XmlAccessorType;
  4. import javax.xml.bind.annotation.XmlRootElement;
  5. @XmlAccessorType(XmlAccessType.FIELD)
  6. @XmlRootElement(name = "root")
  7. public class ResBody<T> {
  8. T response;
  9. public T getResquest() {
  10. return response;
  11. }
  12. public void setResquest(T response) {
  13. this.response = response;
  14. }
  15. }