com.zznote.basecommon.common.annotation.DataColumn Maven / Gradle / Ivy
The newest version!
package com.zznote.basecommon.common.annotation;
import java.lang.annotation.*;
/**
* 数据权限
*
* @author zhangzehn
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DataColumn {
/**
* 占位符关键字
*/
String key() default "deptName";
/**
* 占位符替换值
*/
String value() default "dept_id";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy