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

com.github.abel533.easyxls.bean.Columns Maven / Gradle / Ivy

The newest version!
package com.github.abel533.easyxls.bean;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.List;

@XmlRootElement(name = "columns")
@XmlAccessorType(XmlAccessType.FIELD)
public class Columns {
    /**
     * 列的配置信息
     */
    @XmlElement(name = "column")
    private List columns;

    public List getColumns() {
        return columns;
    }

    public void setColumns(List columns) {
        this.columns = columns;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy