package com.imed.costaccount.common.constants; /** * 数字设置 */ public final class NumberConstant { public NumberConstant() { } /** * 零 */ public static final Integer ZERO = 0; /** * 一 */ public static final Integer ONE = 1; /** * 二 */ public static final Integer TWO = 2; /** * 三 */ public static final Integer THREE = 3; /** * 四 */ public static final Integer FOUR = 4; /** * 五 */ public static final Integer FIVE = 5; /** * 六 */ public static final Integer SIX = 6; /** * 七 */ public static final Integer SEVEN = 7; /** * 八 */ public static final Integer EIGHT = 8; /** * 九 */ public static final Integer NINE = 9; /** * 10 */ public static final Integer TEN = 10; /** * 二十四 */ public static final Integer TWENTY_FOUR = 24; /** * 三十 */ public static final Integer THIRTY = 30; /** * 五十八 */ public static final Integer FIFTY_EIGHT = 58; /** * 五十九 */ public static final Integer FIFTY_NINE = 59; /** * 一百 */ public static final Integer ONE_HUNDRED = 100; /** * 一千 */ public static final Integer ONE_THOUSAND = 1000; /** * 负一 */ public static final Integer NEGATIVE = -1; }