111
k94314517
2025-07-09 d5984685e7efd46a5e850ade13b22fa727163a47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.doumee.core.utils.qiyeweixin.model.response;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @author 江蹄蹄
 * @date 2023/11/23 14:03
 */
@Data
@ApiModel("企业微信用户扩展字段返回参数")
public class QywxUserExtAttrResponse {
    @ApiModelProperty(value = "扩展字段集合")
    private List<QywxUserAttrInfoResponse> attrs;
}