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"; }