Commit f3ca8b9d by 墨竹

fix:序列化

parent d3712b67
......@@ -11,13 +11,16 @@ import java.io.Serializable;
*/
public class DealQywxExternalUserPojo implements Serializable {
private static final long serialVersionUID = 140672261007933753L;
public enum DealType {
//删除
del(0),
//新增
add(1),
//修改
edit(2),;
edit(2),
;
private int type;
DealType(int type) {
......@@ -33,7 +36,6 @@ public class DealQywxExternalUserPojo implements Serializable {
}
}
// 0 删除 1新增
private int type;
private MemberUnionidRelatedDTO data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment