zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.shlanbao.tzsc.utils.extents;
 
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
 
/**
 * 数字精度注解
 * <li>@author Leejean
 * <li>@create 2014-6-24 上午11:48:40
 */
@Retention(RetentionPolicy.RUNTIME)
public @interface NumberFmtAnnotation {
    /**
     * 小数位数
     * <br>"0","1","2"
     * @author Leejean
     * @date 2014-7-3下午04:05:25
     * @return 小数点位数
     */
    public int scale();
}