From ad7b0b114223712e74e3cd164ffe3ceea8ccc02d Mon Sep 17 00:00:00 2001 From: menghao <1584479611@qq.com> Date: Wed, 25 Feb 2026 16:13:07 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E6=A0=B7=E5=BC=8F=E3=80=81?= =?UTF-8?q?=E6=A0=87=E7=89=8C=E6=A0=B7=E5=BC=8F=E5=AD=98redis?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ruoyi/system/domain/dto/PlatformStyleDTO.java | 93 ++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 ruoyi-system/src/main/java/com/ruoyi/system/domain/dto/PlatformStyleDTO.java diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/dto/PlatformStyleDTO.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/dto/PlatformStyleDTO.java new file mode 100644 index 0000000..f39f7c7 --- /dev/null +++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/dto/PlatformStyleDTO.java @@ -0,0 +1,93 @@ +package com.ruoyi.system.domain.dto; + +import java.io.Serializable; + +/** + * 平台样式 DTO + */ +public class PlatformStyleDTO implements Serializable { + private static final long serialVersionUID = 1L; + + private String roomId; + private Long routeId; + private Long platformId; + + /** 平台名称 */ + private String platformName; + + /** 标牌字体大小 */ + private Integer labelFontSize; + + /** 标牌字体颜色 */ + private String labelFontColor; + + /** 平台大小 */ + private Integer platformSize; + + /** 平台颜色 */ + private String platformColor; + + public String getRoomId() { + return roomId; + } + + public void setRoomId(String roomId) { + this.roomId = roomId; + } + + public Long getRouteId() { + return routeId; + } + + public void setRouteId(Long routeId) { + this.routeId = routeId; + } + + public Long getPlatformId() { + return platformId; + } + + public void setPlatformId(Long platformId) { + this.platformId = platformId; + } + + public String getPlatformName() { + return platformName; + } + + public void setPlatformName(String platformName) { + this.platformName = platformName; + } + + public Integer getLabelFontSize() { + return labelFontSize; + } + + public void setLabelFontSize(Integer labelFontSize) { + this.labelFontSize = labelFontSize; + } + + public String getLabelFontColor() { + return labelFontColor; + } + + public void setLabelFontColor(String labelFontColor) { + this.labelFontColor = labelFontColor; + } + + public Integer getPlatformSize() { + return platformSize; + } + + public void setPlatformSize(Integer platformSize) { + this.platformSize = platformSize; + } + + public String getPlatformColor() { + return platformColor; + } + + public void setPlatformColor(String platformColor) { + this.platformColor = platformColor; + } +}