| package com.matrix.system.activity.vo; | 
|   | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| @Data | 
| public class SignSetBasicJsonVo { | 
|      | 
|     @ApiModelProperty(value ="标题图片") | 
|     private String imageUrlTitle; | 
|     @ApiModelProperty(value ="头部图片") | 
|     private String imageUrlHead; | 
|     @ApiModelProperty(value ="按钮图片") | 
|     private String imageUrlButton; | 
|     @ApiModelProperty(value ="状态图片") | 
|     private String imageUrlState; | 
|      | 
|     @ApiModelProperty(value ="规则内容") | 
|     private String ruleExplain; | 
|     @ApiModelProperty(value ="字体颜色") | 
|     private String typographyColor; | 
|     @ApiModelProperty(value ="背景颜色") | 
|     private String backgroundColor; | 
|     @ApiModelProperty(value ="字体大小") | 
|     private Integer typographyNum; | 
|     @ApiModelProperty(value ="字体透明度") | 
|     private Integer typographyLight; | 
|   | 
| } |