1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  | package com.ruoyi.rongcloud.param; 
 |    
 |  import lombok.Data; 
 |    
 |  /** 
 |   * @author Administrator 
 |   */ 
 |  @Data 
 |  public class RongCloudGroupSyncEndParam { 
 |      public String getUserId() { 
 |          return userId; 
 |      } 
 |    
 |      public void setUserId(String userId) { 
 |          this.userId = userId; 
 |      } 
 |    
 |      String userId; 
 |  } 
 |  
  |