/src/com/wqdsoft/im/Entity/MovingVoice.java

https://gitlab.com/Er_Hei/PlayCar · Java · 46 lines · 30 code · 12 blank · 4 comment · 0 complexity · 7301ed7f8818dc9c6f2d03c4ce5dee8d MD5 · raw file

  1. package com.wqdsoft.im.Entity;
  2. import java.io.Serializable;
  3. import com.alibaba.fastjson.JSONObject;
  4. public class MovingVoice implements Serializable {
  5. /**
  6. *
  7. */
  8. private static final long serialVersionUID = 1L;
  9. public String time;
  10. public String url;
  11. public String typefile;
  12. public MovingVoice(String time, String url, String typefile) {
  13. super();
  14. this.time = time;
  15. this.url = url;
  16. this.typefile = typefile;
  17. }
  18. public MovingVoice() {
  19. super();
  20. }
  21. public static MovingVoice getInfo(String json) {
  22. try {
  23. return JSONObject.parseObject(json, MovingVoice.class);//toJavaObject(JSONObject.parseObject(json),
  24. //Card.class);
  25. } catch (Exception e) {
  26. e.printStackTrace();
  27. return null;
  28. }
  29. }
  30. public static String getInfo(MovingVoice info) {
  31. String json = JSONObject.toJSON(info).toString();
  32. return json;
  33. }
  34. }