package com.vincent.rsf.server.manager.entity.excel.annotation;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* @author: Ryan
|
* @create: 2025/3/01 13:29
|
* @version: 1.0
|
* @description: excel 列宽自适应
|
*/
|
@Target({ElementType.TYPE})
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface ExcelAutoColumnSize {
|
|
/** 启用 */
|
boolean enable() default true;
|
}
|