BIToken认证修改

This commit is contained in:
秦鸿展
2026-05-08 11:38:38 +08:00
parent f9f2441b52
commit 2c92b9e641
6 changed files with 128 additions and 1 deletions
@@ -0,0 +1,18 @@
package com.mhd.bi.domain.biReport.support;
/**
* BI 快照表 {@code DEL_FLAG} 取值(三张 *\_SNAPSHOT 表一致)。
* <p>查询接口仅返回 {@link #NORMAL}。</p>
*/
public final class BiSnapshotDelFlag {
/** 无状态 */
public static final int NONE = 0;
/** 正常(接口查询可见) */
public static final int NORMAL = 1;
/** 已删除(逻辑删除,接口不返回) */
public static final int DELETED = 2;
private BiSnapshotDelFlag() {
}
}