* [fix] fix BatchInstanceData cannot Serializable question * fix update serialVersionUID auto generate
This commit is contained in:
parent
474b25dff5
commit
21b624e302
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
package com.alibaba.nacos.naming.core.v2.pojo;
|
package com.alibaba.nacos.naming.core.v2.pojo;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -24,7 +25,9 @@ import java.util.List;
|
|||||||
* @author : ChenHao26
|
* @author : ChenHao26
|
||||||
* @Date: 2022/6/24 16:25
|
* @Date: 2022/6/24 16:25
|
||||||
*/
|
*/
|
||||||
public class BatchInstanceData {
|
public class BatchInstanceData implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 7845847904043098494L;
|
||||||
|
|
||||||
private List<String> namespaces;
|
private List<String> namespaces;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user