Skip to content

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
    • Help
    • Contribute to GitLab
  • Sign in
P
pension
  • Project
    • Project
    • Details
    • Activity
    • Cycle Analytics
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Charts
  • Issues 0
    • Issues 0
    • List
    • Board
    • Labels
    • Milestones
  • Merge Requests 0
    • Merge Requests 0
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
    • Charts
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • mengmeng
  • pension
  • Repository

Switch branch/tag
  • pension
  • ..
  • enums
  • SuperAdminEnum.java
Find file
BlameHistoryPermalink
  • mengmeng's avatar
    20210125 init · 345d86ab
    mengmeng authored 4 years ago
    345d86ab
SuperAdminEnum.java 324 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
package io.hmit.modules.sys.enums;

/**
 * 超级管理员枚举
 *
 * @author zsh 408538940@qq.com
 * @since 1.0.0
 */
public enum SuperAdminEnum {

    YES(1),
    NO(0);

    private int value;

    SuperAdminEnum(int value) {
        this.value = value;
    }

    public int value() {
        return this.value;
    }
}

Replace SuperAdminEnum.java

Attach a file by drag & drop or click to upload


Cancel
A new branch will be created in your fork and a new merge request will be started.