package com.artfess.base.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * 字段权限处理 *
 * 字段权限处理
 * 
* * @company 阿特菲斯信息技术有限公司 * @author zhangxw * @email zhangxw@jee-soft.cn * @date 2018年11月1日 */ @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) public @interface FieldAuth { String value(); }