DownloadBillResData.java 579 B

1234567891011121314151617181920212223242526272829
  1. package com.tencent.protocol.downloadbill_protocol;
  2. /**
  3. * User: rizenguo
  4. * Date: 2014/10/25
  5. * Time: 16:48
  6. */
  7. public class DownloadBillResData {
  8. //协议层
  9. private String return_code = "";
  10. private String return_msg = "";
  11. public String getReturn_code() {
  12. return return_code;
  13. }
  14. public void setReturn_code(String return_code) {
  15. this.return_code = return_code;
  16. }
  17. public String getReturn_msg() {
  18. return return_msg;
  19. }
  20. public void setReturn_msg(String return_msg) {
  21. this.return_msg = return_msg;
  22. }
  23. }