/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
- package com.wqdsoft.im.Entity;
- import java.io.Serializable;
- import com.alibaba.fastjson.JSONObject;
- public class MovingVoice implements Serializable {
- /**
- *
- */
- private static final long serialVersionUID = 1L;
- public String time;
- public String url;
- public String typefile;
-
-
- public MovingVoice(String time, String url, String typefile) {
- super();
- this.time = time;
- this.url = url;
- this.typefile = typefile;
- }
- public MovingVoice() {
- super();
- }
- public static MovingVoice getInfo(String json) {
- try {
- return JSONObject.parseObject(json, MovingVoice.class);//toJavaObject(JSONObject.parseObject(json),
- //Card.class);
- } catch (Exception e) {
- e.printStackTrace();
- return null;
- }
- }
- public static String getInfo(MovingVoice info) {
- String json = JSONObject.toJSON(info).toString();
- return json;
- }
- }