All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ludii.excel.annotation.ExcelFields Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
/*
 * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
 */
package com.ludii.excel.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Excel注解定义数组
 *
 * @author ThinkGem
 * @version 2016-11-9
 */
@Target({ElementType.METHOD, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface ExcelFields {

    ExcelField[] value();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy