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

com.github.yt.excel.vo.ExcelHeader Maven / Gradle / Ivy

The newest version!
package com.github.yt.excel.vo;


/**
 * Excel标题,用于根据order排序
 */
public class ExcelHeader implements Comparable {

    private Class fieldType;
    private String title;
    private int order;

    public ExcelHeader(Class fieldType, String title, int order) {
        this.fieldType = fieldType;
        this.title = title;
        this.order = order;
    }

    public Class getFieldType() {
        return fieldType;
    }

    public void setFieldType(Class fieldType) {
        this.fieldType = fieldType;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public int getOrder() {
        return order;
    }

    public void setOrder(int order) {
        this.order = order;
    }

    public int compareTo(ExcelHeader o) {
        return this.order > o.order ? 1 : -1;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy