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

com.zhongweixian.excel.entity.params.MergeEntity Maven / Gradle / Ivy

The newest version!
package com.zhongweixian.excel.entity.params;

import java.util.List;

/**
 * @author [email protected]
 * @Date 2017/11/5:23:32
 */
public class MergeEntity {

    /**
     * 合并开始行
     */
    private int startRow;
    /**
     * 合并结束行
     */
    private int endRow;
    /**
     * 文字
     */
    private String text;
    /**
     * 依赖关系文本
     */
    private List relyList;

    public MergeEntity() {

    }

    public MergeEntity(String text, int startRow, int endRow) {
        this.text = text;
        this.endRow = endRow;
        this.startRow = startRow;
    }

    public int getEndRow() {
        return endRow;
    }

    public List getRelyList() {
        return relyList;
    }

    public int getStartRow() {
        return startRow;
    }

    public String getText() {
        return text;
    }

    public void setEndRow(int endRow) {
        this.endRow = endRow;
    }

    public void setRelyList(List relyList) {
        this.relyList = relyList;
    }

    public void setStartRow(int startRow) {
        this.startRow = startRow;
    }

    public void setText(String text) {
        this.text = text;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy