ReportResData.java 789 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.tencent.common.report.protocol;
  2. /**
  3. * User: rizenguo
  4. * Date: 2014/11/12
  5. * Time: 17:06
  6. */
  7. public class ReportResData {
  8. //以下是API接口返回的对应数据
  9. private String return_code;
  10. private String return_msg;
  11. private String result_code;
  12. public String getReturn_code() {
  13. return return_code;
  14. }
  15. public void setReturn_code(String return_code) {
  16. this.return_code = return_code;
  17. }
  18. public String getReturn_msg() {
  19. return return_msg;
  20. }
  21. public void setReturn_msg(String return_msg) {
  22. this.return_msg = return_msg;
  23. }
  24. public String getResult_code() {
  25. return result_code;
  26. }
  27. public void setResult_code(String result_code) {
  28. this.result_code = result_code;
  29. }
  30. }