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

top.doudou.common.tool.file.excel.ExcelWriteDto Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package top.doudou.common.tool.file.excel;

import lombok.Data;

import java.io.Serializable;

/**
 * excel写入实体类
 * @author  傻男人<[email protected]>
 * @date 2020-03-26
 */
@Data
public class ExcelWriteDto implements Serializable {

    /**
     * 写入到excel的行宽
     */
    private int columnWidth;

    /**
     * 表头的位置
     * @return
     */
    private int position;

    /**
     * 对应实体类的属性值
     */
    private String fieldName;

    /**
     * 表头的值
     */
    private String value;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy