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

matrix.boot.common.dto.ExcelColumnDto Maven / Gradle / Ivy

There is a newer version: 2.1.11
Show newest version
package matrix.boot.common.dto;

import lombok.Data;
import lombok.experimental.Accessors;

import java.io.Serializable;

/**
 * @author wangcheng
 * 2020/7/17
 **/
@Data
@Accessors(chain = true)
public class ExcelColumnDto implements Serializable {

    /**
     * 单元格名称
     */
    private String name;

    /**
     * 单元格中的值
     */
    private Object value;

    /**
     * 单元格宽度
     */
    private int width = 200;

    /**
     * 单元格类型
     */
    private Class type = null;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy