1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | package com.doumee.core.haikang.model.cars.response; 
 |    
 |  import lombok.Data; 
 |    
 |    
 |  /** 
 |   * 设备通道信息 
 |   * @param <T> 
 |   */ 
 |  @Data 
 |  public class CarsDeviceChannelResponse<T> { 
 |      private String  terminalID;//    终端手机号    String 
 |      private String   channelName;//    通道号名称    String 
 |      private Integer    channelNum;//    通道编号 
 |      private Integer    channelType;//    通道号类型,0 视频通道,1 音频通道 
 |  } 
 |  
  |