| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package xin.glue.ui.common.entity;
- //合并行列实体类
- public class MergeCell {
- private String name;//只有2个值:x或者y,表示合并行还是合并列
- private Integer x;//合并行列所在x轴坐标,以表格左上顶点为起点,右为X,下为Y
- private Integer y;//合并行列所在y轴坐标,以表格左上顶点为起点,右为X,下为Y
- private Integer cnt;//合并行列的数目
-
- public MergeCell() {
- super();
- }
-
- public MergeCell(String name, Integer x, Integer y, Integer cnt) {
- super();
- this.name = name;
- this.x = x;
- this.y = y;
- this.cnt = cnt;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public Integer getX() {
- return x;
- }
- public void setX(Integer x) {
- this.x = x;
- }
- public Integer getY() {
- return y;
- }
- public void setY(Integer y) {
- this.y = y;
- }
- public Integer getCnt() {
- return cnt;
- }
- public void setCnt(Integer cnt) {
- this.cnt = cnt;
- }
-
- }
|