2026-04-11 17:03:22 +08:00
|
|
|
package com.lesingle.common.enums;
|
2026-04-08 13:37:14 +08:00
|
|
|
|
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.Getter;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 可见性枚举
|
|
|
|
|
*/
|
|
|
|
|
@Getter
|
|
|
|
|
@AllArgsConstructor
|
|
|
|
|
public enum Visibility {
|
|
|
|
|
|
|
|
|
|
PUBLIC("public", "公开"),
|
|
|
|
|
DESIGNATED("designated", "指定"),
|
|
|
|
|
INTERNAL("internal", "内部"),
|
|
|
|
|
PRIVATE("private", "私有");
|
|
|
|
|
|
|
|
|
|
private final String value;
|
|
|
|
|
private final String description;
|
|
|
|
|
}
|