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

com.orion.office.excel.option.CellOption Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
package com.orion.office.excel.option;

import java.io.Serializable;

/**
 * excel 单元格参数
 *
 * @author Jiahang Li
 * @version 1.0.0
 * @since 2020/12/24 16:00
 */
public class CellOption implements Serializable {

    /**
     * 格式化
     */
    private String format;

    public CellOption() {
    }

    public CellOption(String format) {
        this.format = format;
    }

    public String getFormat() {
        return format;
    }

    public void setFormat(String format) {
        this.format = format;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy