cjl
2024-04-01 3c689f6b593a12a142543b6e922ee8c39c8c4e8a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.moral.anno;
 
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
 
/**
* @Description: 该注解用于标注实体类属性的中文名称,用于插入日志使用
        * @Param:
        * @return:
        * @Author: 陈凯裕
        * @Date: 2021/8/24
        */
@Retention(RetentionPolicy.RUNTIME)
public @interface FieldName {
    String value() default "";
}