All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.biz.web.annotation.check.BizXApiCheckDateTime Maven / Gradle / Ivy

Go to download

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;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy