zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 DateFmtAnnotation {
    /**
     * 格式化模板
     * yyyy-MM-dd HH:mm:ss
     * <br>更多模板参考Data类相关API
     * @author Leejean
     * @create 2014-7-3下午04:04:05
     * @return 模板字符串
     */
    public String fmtPattern();
}