MergeEntity.java 1.17 KB
package com.bckefu.excel.entity.params;

import java.util.List;

/**
 * @author caoliang1918@aliyun.com
 * @Date 2017/11/5:23:32
 */
public class MergeEntity {

    /**
     * 合并开始行
     */
    private int startRow;
    /**
     * 合并结束行
     */
    private int endRow;
    /**
     * 文字
     */
    private String text;
    /**
     * 依赖关系文本
     */
    private List<String> 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<String> 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<String> relyList) {
        this.relyList = relyList;
    }

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

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

}