init():南钢程序前后端分离

This commit is contained in:
Allenxy
2024-09-13 16:10:08 +08:00
parent 4c5f5493a5
commit fc11668842
718 changed files with 67569 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package com.ruoyi.common.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Excel注解集
*
* @author ruoyi
*/
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Excels
{
public Excel[] value();
}