| package com.doumee.core.haikang.model.param.request; | 
|   | 
| import lombok.Data; | 
|   | 
| @Data | 
| public class TransparentChannelSingleRequest { | 
|  /** | 
|   * 发送消息给LED接口,head头的参数,ability值传参为cld; | 
|   * treatyType值传参为haixuan_led_net; | 
|   * operationType为固定值219, | 
|   * regionNo为1代表第一行,依次类推,不同型号的LED设备支持的行数可能不一样; | 
|   */ | 
|  private String content    ; //String    true    内容 | 
|  private Integer deviceId; //    String    false    设备主键 | 
|  private int speed; //    播放速度 | 
|  private int color; // 字体颜色(1:红色,2:绿色,4:黄色,8:蓝色,16:紫色,32:青色,64:白色) | 
| } |