BIToken认证修改
This commit is contained in:
@@ -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() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user