public enum DataScopeFuncEnum extends java.lang.Enum<DataScopeFuncEnum>
| 枚举常量和说明 |
|---|
ALL
查询全部数据 SELECT * FROM (originSql) temp_data_scope WHERE temp_data_scope.dept_id IN
(1)
|
COUNT
查询函数COUNT SELECT COUNT(1) FROM (originSql) temp_data_scope WHERE
temp_data_scope.dept_id IN (1)
|
| 限定符和类型 | 字段和说明 |
|---|---|
private java.lang.String |
description
描述
|
private java.lang.String |
type
类型
|
| 限定符和类型 | 方法和说明 |
|---|---|
static DataScopeFuncEnum |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static DataScopeFuncEnum[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final DataScopeFuncEnum ALL
public static final DataScopeFuncEnum COUNT
private final java.lang.String type
private final java.lang.String description
public static DataScopeFuncEnum[] values()
for (DataScopeFuncEnum c : DataScopeFuncEnum.values()) System.out.println(c);
public static DataScopeFuncEnum valueOf(java.lang.String name)
name - 要返回的枚举常量的名称。java.lang.IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException - 如果参数为空值Copyright © 2024 pig4cloud. All rights reserved.