package com.tievd.jyz.plugin;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* Author: wqy
|
* Date: 2023/3/23 13:13
|
*/
|
|
@Target(ElementType.FIELD)
|
@Retention(RetentionPolicy.RUNTIME)
|
public @interface ExcelHyperLink{
|
|
}
|