package com.engine.organization.util.excel; /** * 注释 */ public class ExcelComment { int dx1 = 0; int dy1 = 0; int dx2 = 0; int dy2 = 0; int col1 = 0; int row1 = 0; int col2 = 0; int row2 = 0; String content; public int getDx1() { return dx1; } public void setDx1(int dx1) { this.dx1 = dx1; } public int getDy1() { return dy1; } public void setDy1(int dy1) { this.dy1 = dy1; } public int getDx2() { return dx2; } public void setDx2(int dx2) { this.dx2 = dx2; } public int getDy2() { return dy2; } public void setDy2(int dy2) { this.dy2 = dy2; } public int getCol1() { return col1; } public void setCol1(int col1) { this.col1 = col1; } public int getRow1() { return row1; } public void setRow1(int row1) { this.row1 = row1; } public int getCol2() { return col2; } public void setCol2(int col2) { this.col2 = col2; } public int getRow2() { return row2; } public void setRow2(int row2) { this.row2 = row2; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public ExcelComment(int dx1, int dy1, int dx2, int dy2, int col1, int row1, int col2, int row2, String content) { this.dx1 = dx1; this.dy1 = dy1; this.dx2 = dx2; this.dy2 = dy2; this.col1 = col1; this.row1 = row1; this.col2 = col2; this.row2 = row2; this.content = content; } public ExcelComment(int col1, int row1, int col2, int row2, String content) { this.col1 = col1; this.row1 = row1; this.col2 = col2; this.row2 = row2; this.content = content; } public ExcelComment() { } }