1 changed files with 93 additions and 0 deletions
@ -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; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue