Merge pull request #13509 from dataease/pr@dev-v2@perf_free_resource

perf(X-Pack): 游离资源序列化
This commit is contained in:
xuwei-fit2cloud 2024-11-22 18:30:51 +08:00 committed by GitHub
commit dce5926718
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 3 deletions

@ -1 +1 @@
Subproject commit 1a9dd92832707a6b07bd879aef3a0882e0db8ea7
Subproject commit 0b3d7d7ed645f0332d4d42f5ee29ba9454d9c3e2

View File

@ -1,5 +1,7 @@
package io.dataease.api.free.vo;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
import io.dataease.model.TreeResultModel;
import lombok.Data;
@ -11,9 +13,9 @@ import java.util.List;
public class FreeVO implements Serializable, TreeResultModel<FreeVO> {
@Serial
private static final long serialVersionUID = -7055936995493939929L;
@JsonSerialize(using= ToStringSerializer.class)
private Long id;
@JsonSerialize(using= ToStringSerializer.class)
private Long pid;
private String name;