package com.vci.starter.web.annotation;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* 列描述
|
*/
|
@Target({ElementType.FIELD})
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface VciColumnDefinition {
|
|
/**
|
* 具体的值
|
* @return
|
*/
|
String value();
|
}
|