package com.vci.pagemodel; /** * 生命周期的连接线 * @author weidy * @date 2022-1-12 */ public class OsLifeCycleLineBoundVO implements java.io.Serializable { /** * 主键 */ private String id; /** * 名称 */ private String name; /** * 起点x */ private String cellx; /** * 起点y */ private String celly; /** * 宽度 */ private String cellw; /** * 高度 */ private String cellh; /** * 图标 */ private String cellicon; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getCellx() { return cellx; } public void setCellx(String cellx) { this.cellx = cellx; } public String getCelly() { return celly; } public void setCelly(String celly) { this.celly = celly; } public String getCellw() { return cellw; } public void setCellw(String cellw) { this.cellw = cellw; } public String getCellh() { return cellh; } public void setCellh(String cellh) { this.cellh = cellh; } public String getCellicon() { return cellicon; } public void setCellicon(String cellicon) { this.cellicon = cellicon; } @Override public String toString() { return "OsLifeCycleLineBoundVO{" + "id='" + id + '\'' + ", name='" + name + '\'' + ", cellx='" + cellx + '\'' + ", celly='" + celly + '\'' + ", cellw='" + cellw + '\'' + ", cellh='" + cellh + '\'' + ", cellicon='" + cellicon + '\'' + '}'; } }