Skip to content
  • This project
    • Loading...
  • Sign in

legobackend / lego-manage

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • lego-manage
  • ..
  • constant
  • SystemConstants.java
  • 村长大人's avatar
    初始化项目 · 22e4a1ac
    村长大人 committed 2024-09-26 22:16:48 +0800
    22e4a1ac
SystemConstants.java 283 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.lego.common.constant;

/**
 * 系统常量配置
 */
public interface SystemConstants {
    /** 是/否 */
    Integer YES = 1;
    Integer NO = 0;

    /** 枚举数据,属性名称 */
    String ENUMERATION_LABEL = "label";
    String ENUMERATION_VALUE = "value";

}