package com.sandu.ximon.admin.dto.nova;
|
|
import lombok.Data;
|
import lombok.NoArgsConstructor;
|
|
/**
|
* @author LiuHaoNan
|
* @date 2022/8/4
|
*/
|
@NoArgsConstructor
|
@Data
|
public class WratherPage {
|
|
|
private Integer zIndex;
|
|
private String type;
|
|
private String address;
|
|
private Double latitude;
|
|
private Double longitude;
|
|
private Integer width;
|
|
private Integer height;
|
|
private Integer refreshPeriod;
|
|
private Integer fontSize;
|
|
private Boolean bold;
|
|
private Boolean italic;
|
|
private Boolean underline;
|
|
private String color;
|
|
private Integer tempUnit;
|
|
private Integer unitSymbol;
|
|
private Boolean weatherEnable;
|
|
private Boolean tempEnable;
|
|
private Boolean windEnable;
|
|
private Boolean humidEnable;
|
|
private Boolean currentTempEnable;
|
|
private Boolean isShowInOneLine;
|
|
private Integer duration;
|
|
private PlayerLayout layout;
|
|
}
|