ludc
2024-09-13 d79ba1d249da7e4a347107b06be2a2add00fad6e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.vci.web.annotation;
 
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
 
/**
 * 输入和选择字符自动记录
 * 比如计量单位,时间格式,分隔符
 * @author weidy
 * @date 2021-1-19
 */
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface BdSelectInput {
 
    /**
     * 内容标记
     * @return 内容标记
     */
    String flag();
 
    /**
     * 领域
     * @return 领域的值
     */
    String namespace();
 
    /**
     * 获取对象的属性
     * @return 对象的属性
     */
    String value();
 
 
}