11
tjx
23 小时以前 ce7738b672326ccbb36aca1a90c60b184be707f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.gs.dingtalk.dto;
 
import com.google.gson.annotations.SerializedName;
import lombok.Data;
 
import java.util.List;
 
@Data
public class Result {
 
    // Getters and Setters
    @SerializedName("exclusive_account_userid_list")
    private List<String> exclusiveAccountUseridList;
 
    private String userid;
 
}