com.github.xphsc.annotation.ExcelField Maven / Gradle / Ivy
package com.github.xphsc.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Created by ${huipei.x} on 2017/6/20
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface ExcelField {
/**
* 属性的标题名称
*/
String title();
/**
* 在excel的顺序
*/
int order() default 9999;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy