feat(仪表板、数据大屏): 支持发布 #12628 #12905 #13460

This commit is contained in:
wangjiahao
2025-03-25 18:11:31 +08:00
committed by 王嘉豪
parent 2736388d4e
commit 8bb0595f8b
50 changed files with 2976 additions and 58 deletions

View File

@@ -88,4 +88,22 @@ public class CommonConstants {
//公共
public static final String PUBLIC = "public";
}
public static final class RESOURCE_TABLE {
//主表
public static final String CORE = "core";
//镜像表
public static final String SNAPSHOT = "snapshot";
}
public static final class DV_STATUS {
//未发布
public static final int UNPUBLISHED = 0;
//已发布
public static final int PUBLISHED = 1;
//已保存未发布
public static final int SAVED_UNPUBLISHED = 2;
}
}