mirror of https://github.com/alibaba/easyexcel
2 changed files with 58 additions and 35 deletions
@ -0,0 +1,16 @@
|
||||
package com.alibaba.excel.annotation; |
||||
|
||||
import java.lang.annotation.ElementType; |
||||
import java.lang.annotation.Retention; |
||||
import java.lang.annotation.RetentionPolicy; |
||||
import java.lang.annotation.Target; |
||||
|
||||
/** |
||||
* Declare that this type of field is not inheritable |
||||
* |
||||
* @author ShuaiJu Sun |
||||
*/ |
||||
@Target(ElementType.TYPE) |
||||
@Retention(RetentionPolicy.RUNTIME) |
||||
public @interface ExcelUnInheritable { |
||||
} |
Loading…
Reference in new issue