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

cn.afterturn.easypoi.excel.entity.TemplateSumEntity Maven / Gradle / Ivy

There is a newer version: 4.5.0
Show newest version
package cn.afterturn.easypoi.excel.entity;

import lombok.Data;

/**
 * 统计对象
 *
 * @author JueYue
 */
@Data
public class TemplateSumEntity {

    /**
     * CELL的值
     */
    private String cellValue;
    /**
     * 需要计算的KEY
     */
    private String sumKey;
    /**
     * 列
     */
    private int    col;
    /**
     * 行
     */
    private int    row;
    /**
     * 最后值
     */
    private double value;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy