| | |
| | | |
| | | @ApiModel(value = "WorkbenchCard", description = "工作台卡片") |
| | | @TableName("blade_workbench_card") |
| | | |
| | | public class WorkbenchCard extends TenantEntity { |
| | | private static final long serialVersionUID = 1; |
| | | @ApiModelProperty("工作台ID") |
| | |
| | | private String apiResource; |
| | | @ApiModelProperty("文本内容") |
| | | private String textContent; |
| | | |
| | | @ApiModelProperty("布局设置") |
| | | private String layoutConfig; |
| | | public void setWorkbenchId(final Long workbenchId) { |
| | | this.workbenchId = workbenchId; |
| | | } |
| | |
| | | public String toString() { |
| | | return "WorkbenchCard(workbenchId=" + getWorkbenchId() + ", cardLength=" + getCardLength() + ", cardWide=" + getCardWide() + ", xCoordinate=" + getXCoordinate() + ", yCoordinate=" + getYCoordinate() + ", cardKey=" + getCardKey() + ", apiResource=" + getApiResource() + ", textContent=" + getTextContent() + ")"; |
| | | } |
| | | |
| | | /* |
| | | public boolean equals(final Object o) { |
| | | if (o == this) { |
| | | return true; |
| | |
| | | } |
| | | return false; |
| | | } |
| | | |
| | | */ |
| | | protected boolean canEqual(final Object other) { |
| | | return other instanceof WorkbenchCard; |
| | | } |
| | | |
| | | /* |
| | | public int hashCode() { |
| | | int result = super.hashCode(); |
| | | Object $workbenchId = getWorkbenchId(); |
| | |
| | | Object $textContent = getTextContent(); |
| | | return (result8 * 59) + ($textContent == null ? 43 : $textContent.hashCode()); |
| | | } |
| | | |
| | | */ |
| | | public Long getWorkbenchId() { |
| | | return this.workbenchId; |
| | | } |
| | |
| | | public String getTextContent() { |
| | | return this.textContent; |
| | | } |
| | | |
| | | public String getLayoutConfig() { |
| | | return layoutConfig; |
| | | } |
| | | |
| | | public void setLayoutConfig(String layoutConfig) { |
| | | this.layoutConfig = layoutConfig; |
| | | } |
| | | |
| | | public String getxCoordinate() { |
| | | return xCoordinate; |
| | | } |
| | | |
| | | public void setxCoordinate(String xCoordinate) { |
| | | this.xCoordinate = xCoordinate; |
| | | } |
| | | |
| | | public String getyCoordinate() { |
| | | return yCoordinate; |
| | | } |
| | | |
| | | public void setyCoordinate(String yCoordinate) { |
| | | this.yCoordinate = yCoordinate; |
| | | } |
| | | |
| | | |
| | | } |