com.biz.web.annotation.check.BizXApiCheckDateTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz-all Show documentation
Show all versions of biz-all Show documentation
BizX 是一个灵活而高效的业务开发框架, 其中也有很多为业务开发所需要的工具类的提供。
The newest version!
package com.biz.web.annotation.check;
import com.biz.common.date.DateConstant;
import com.biz.web.annotation.error.BizXApiCheckErrorMessage;
import java.lang.annotation.*;
/**
* 检查时间格式
*
* @author francis
**/
@Target({ElementType.FIELD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface BizXApiCheckDateTime {
/**
* 时间格式
*/
String format() default DateConstant.DEFAULT_DATETIME;
/**
* 异常信息
*/
BizXApiCheckErrorMessage error() default @BizXApiCheckErrorMessage;
}