package com.artfess.base.annotation;

import java.lang.annotation.*;

/**
 * BigDecimal格式化化注解
 * <pre>
 * 在Controller类上添加该注解，BigDecimal类型将会去掉末尾多余的0。
 * </pre>
 *
 * @date 2022年5月17日14:07:49
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.ANNOTATION_TYPE})
public @interface BigDecimalFormat {
}
