skyouc
2025-03-18 5c1e5f8ce5e53c187f100f5d786a77991198960a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
}