办学质量监测教学评价系统
ageer
2025-05-03 256f72c4877749255a3a76c28a8b46575f6d63aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.ruoyi.common.excel.annotation;
 
import org.ruoyi.common.excel.core.CellMergeStrategy;
 
import java.lang.annotation.*;
 
/**
 * excel 列单元格合并(合并列相同项)
 *
 * 需搭配 {@link CellMergeStrategy} 策略使用
 *
 * @author Lion Li
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface CellMerge {
 
    /**
     * col index
     */
    int index() default -1;
 
}