feat:补充混淆忽略
This commit is contained in:
@@ -63,8 +63,7 @@ public class DynamicSysHolder extends MsgViewHolderBase {
|
|||||||
String layout = erbanSysMsgInfo.getLayout();
|
String layout = erbanSysMsgInfo.getLayout();
|
||||||
ErbanSysMsgLayout erbanSysMsgLayout;
|
ErbanSysMsgLayout erbanSysMsgLayout;
|
||||||
try {
|
try {
|
||||||
// erbanSysMsgLayout = JSON.parseObject(layout, ErbanSysMsgLayout.class);
|
erbanSysMsgLayout = JSON.parseObject(layout, ErbanSysMsgLayout.class);
|
||||||
erbanSysMsgLayout = JsonUtils.fromJson(layout, ErbanSysMsgLayout.class);
|
|
||||||
|
|
||||||
} catch (Exception ex) { // json解析出错
|
} catch (Exception ex) { // json解析出错
|
||||||
ex.printStackTrace();
|
ex.printStackTrace();
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
package com.chwl.core.im.custom.bean;
|
package com.chwl.core.im.custom.bean;
|
||||||
|
|
||||||
|
import androidx.annotation.Keep;
|
||||||
|
|
||||||
import com.alibaba.fastjson.JSONObject;
|
import com.alibaba.fastjson.JSONObject;
|
||||||
import com.google.gson.Gson;
|
import com.google.gson.Gson;
|
||||||
import com.chwl.core.msg.sys.bean.ErbanSysMsgInfo;
|
import com.chwl.core.msg.sys.bean.ErbanSysMsgInfo;
|
||||||
@@ -10,6 +12,7 @@ import lombok.EqualsAndHashCode;
|
|||||||
/**
|
/**
|
||||||
* Created by MadisonRong on 17/06/2018.
|
* Created by MadisonRong on 17/06/2018.
|
||||||
*/
|
*/
|
||||||
|
@Keep
|
||||||
@EqualsAndHashCode(callSuper = true)
|
@EqualsAndHashCode(callSuper = true)
|
||||||
@Data
|
@Data
|
||||||
public class SysMsgAttachment extends CustomAttachment {
|
public class SysMsgAttachment extends CustomAttachment {
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
package com.chwl.core.msg.sys;
|
package com.chwl.core.msg.sys;
|
||||||
|
|
||||||
|
import androidx.annotation.Keep;
|
||||||
|
|
||||||
import com.chwl.core.msg.sys.bean.ErbanSysMsgComponent;
|
import com.chwl.core.msg.sys.bean.ErbanSysMsgComponent;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@@ -9,6 +11,7 @@ import lombok.Data;
|
|||||||
/**
|
/**
|
||||||
* Created by MadisonRong on 21/06/2018.
|
* Created by MadisonRong on 21/06/2018.
|
||||||
*/
|
*/
|
||||||
|
@Keep
|
||||||
@Data
|
@Data
|
||||||
public class ErbanSysMsgLayout {
|
public class ErbanSysMsgLayout {
|
||||||
private ErbanSysMsgComponent title;
|
private ErbanSysMsgComponent title;
|
||||||
|
@@ -1,10 +1,13 @@
|
|||||||
package com.chwl.core.msg.sys.bean;
|
package com.chwl.core.msg.sys.bean;
|
||||||
|
|
||||||
|
import androidx.annotation.Keep;
|
||||||
|
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by MadisonRong on 21/06/2018.
|
* Created by MadisonRong on 21/06/2018.
|
||||||
*/
|
*/
|
||||||
|
@Keep
|
||||||
@Data
|
@Data
|
||||||
public class ErbanSysMsgComponent {
|
public class ErbanSysMsgComponent {
|
||||||
private String content;
|
private String content;
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
package com.chwl.core.msg.sys.bean;
|
package com.chwl.core.msg.sys.bean;
|
||||||
|
|
||||||
|
import androidx.annotation.Keep;
|
||||||
|
|
||||||
import com.google.gson.Gson;
|
import com.google.gson.Gson;
|
||||||
import com.google.gson.reflect.TypeToken;
|
import com.google.gson.reflect.TypeToken;
|
||||||
|
|
||||||
@@ -12,6 +14,7 @@ import lombok.Data;
|
|||||||
/**
|
/**
|
||||||
* Created by MadisonRong on 21/06/2018.
|
* Created by MadisonRong on 21/06/2018.
|
||||||
*/
|
*/
|
||||||
|
@Keep
|
||||||
@Data
|
@Data
|
||||||
public class ErbanSysMsgInfo implements Serializable{
|
public class ErbanSysMsgInfo implements Serializable{
|
||||||
|
|
||||||
|
@@ -2,12 +2,15 @@ package com.chwl.core.community.bean;
|
|||||||
|
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
|
import androidx.annotation.Keep;
|
||||||
|
|
||||||
import kotlin.jvm.Transient;
|
import kotlin.jvm.Transient;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* create by lvzebiao @2019/11/21
|
* create by lvzebiao @2019/11/21
|
||||||
*/
|
*/
|
||||||
|
@Keep
|
||||||
@Data
|
@Data
|
||||||
public class DynamicMedia {
|
public class DynamicMedia {
|
||||||
|
|
||||||
|
@@ -3,6 +3,8 @@ package com.chwl.core.community.bean;
|
|||||||
|
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
|
|
||||||
|
import androidx.annotation.Keep;
|
||||||
|
|
||||||
import com.chwl.core.user.bean.BaseUserInfo;
|
import com.chwl.core.user.bean.BaseUserInfo;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
@@ -15,6 +17,7 @@ import lombok.Setter;
|
|||||||
/**
|
/**
|
||||||
* create by lvzebiao @2019/11/13
|
* create by lvzebiao @2019/11/13
|
||||||
*/
|
*/
|
||||||
|
@Keep
|
||||||
@Setter
|
@Setter
|
||||||
@Getter
|
@Getter
|
||||||
public class WorldDynamicBean extends BaseUserInfo implements Serializable {
|
public class WorldDynamicBean extends BaseUserInfo implements Serializable {
|
||||||
|
Reference in New Issue
Block a user