[ISSUE #8931] Fix bug :BatchInstanceData cannot Serializable question (#8940)

* [fix] fix BatchInstanceData cannot Serializable question

* fix update serialVersionUID auto generate
This commit is contained in:
无处不在 2022-08-12 16:44:15 +08:00 committed by GitHub
parent 474b25dff5
commit 21b624e302
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,6 +16,7 @@
package com.alibaba.nacos.naming.core.v2.pojo;
import java.io.Serializable;
import java.util.List;
/**
@ -24,7 +25,9 @@ import java.util.List;
* @author : ChenHao26
* @Date: 2022/6/24 16:25
*/
public class BatchInstanceData {
public class BatchInstanceData implements Serializable {
private static final long serialVersionUID = 7845847904043098494L;
private List<String> namespaces;