|  |  | 
 |  |  | package com.dy.pipIrrRemote.monitor; | 
 |  |  |  | 
 |  |  | import lombok.AllArgsConstructor; | 
 |  |  | import com.dy.pipIrrRemote.monitor.common.CdParameter; | 
 |  |  | import lombok.Data; | 
 |  |  | import lombok.EqualsAndHashCode; | 
 |  |  | import lombok.ToString; | 
 |  |  | import lombok.experimental.SuperBuilder; | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * @Author: liurunyu | 
 |  |  | 
 |  |  |  * @Description | 
 |  |  |  */ | 
 |  |  | @Data | 
 |  |  | @AllArgsConstructor | 
 |  |  | public class ComTransParam { | 
 |  |  |     public String commandCode; | 
 |  |  | @ToString(callSuper = true) | 
 |  |  | @EqualsAndHashCode(callSuper = true) | 
 |  |  | @SuperBuilder | 
 |  |  | public class ComTransParam extends CdParameter { | 
 |  |  |     public String data ; | 
 |  |  | } | 
 |  |  | } |