1
0

SendMsgVo.java 595 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.kmall.api.dto;
  2. /**
  3. * @author huangyaqin
  4. * @version 1.0
  5. * 2018-10-16 14:23
  6. */
  7. public class SendMsgVo {
  8. private String code;
  9. private String msg;
  10. private String result;
  11. public String getCode() {
  12. return code;
  13. }
  14. public void setCode(String code) {
  15. this.code = code;
  16. }
  17. public String getMsg() {
  18. return msg;
  19. }
  20. public void setMsg(String msg) {
  21. this.msg = msg;
  22. }
  23. public String getResult() {
  24. return result;
  25. }
  26. public void setResult(String result) {
  27. this.result = result;
  28. }
  29. }