648540858
2023-03-20 039fbf7e243d4bf0f46b44e7dae2a5d36e978056
src/main/java/com/genersoft/iot/vmp/vmanager/bean/WVPResult.java
@@ -4,7 +4,7 @@
import io.swagger.v3.oas.annotations.media.Schema;
@Schema(description = "统一返回结果")
public class WVPResult<T> {
public class WVPResult<T> implements Cloneable{
    public WVPResult() {
    }
@@ -64,4 +64,8 @@
        this.data = data;
    }
    @Override
    public Object clone() throws CloneNotSupportedException {
        return super.clone();
    }
}