Column.java
415 Bytes
package com.brframework.commoncms.annatotion;
import java.lang.annotation.*;
/**
* 列抽象注解
* @author xu
* @date 2019/11/26 22:14
*/
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Column {
/**
* 列表展示时,该列是否处于显示状态,可控制列表中,默认隐藏和显示的列
*/
boolean selectShow() default true;
}