You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
333 B

package com.java3y.austin.constant;
/**
* 基础的常量信息
* @author 3y
*/
public class AustinConstant {
/**
* boolean转换
*/
public final static Integer TRUE = 1;
public final static Integer FALSE = 0;
/**
* 时间格式
*/
public final static String YYYYMMDD = "yyyyMMdd";
}