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

com.github.fartherp.framework.poi.excel.WriteDeal Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
/*
 * Copyright (c) 2017. CK. All rights reserved.
 */

package com.github.fartherp.framework.poi.excel;

/**
 * Created by IntelliJ IDEA.
 *
 * @author: CK
 * @date: 2017/11/25
 */
public interface WriteDeal {
    /**
     * 一行excel数据返回业务BEAN
     *
     * @param obj 一行excel数据
     * @return 业务BEAN
     */
    String[] dealBean(T obj);

    /**
     * 设置每列宽度
     * @param title 标题
     * @return 宽度
     */
    int[] setColumnWidth(String[] title);

    /**
     * 设置高度
     * @return 高度
     */
    short setHeight();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy