|
@@ -1,5 +1,7 @@
|
|
|
package com.ym.mec.biz.dal.dto;
|
|
|
|
|
|
+import com.alibaba.fastjson.annotation.JSONField;
|
|
|
+
|
|
|
/**
|
|
|
* Description
|
|
|
*
|
|
@@ -8,10 +10,13 @@ package com.ym.mec.biz.dal.dto;
|
|
|
*/
|
|
|
public class TencentImCallbackResult {
|
|
|
|
|
|
+ @JSONField(name = "ActionStatus")
|
|
|
private String ActionStatus = "OK";
|
|
|
|
|
|
+ @JSONField(name = "ErrorInfo")
|
|
|
private String ErrorInfo;
|
|
|
|
|
|
+ @JSONField(name = "ErrorCode")
|
|
|
private int ErrorCode = 0;
|
|
|
|
|
|
public String getActionStatus() {
|