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