All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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