1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package com.yanzuoguang.wxxcx.operation.select;
import com.yanzuoguang.wxxcx.base.WxXcxResponseBaseError;
import java.util.List;
/***
* 返回值
*
* @author:heyanou
*/
public class WxOperationGetDomainInfoDataRes extends WxXcxResponseBaseError {
/**
* <p>
* 描述:request合法域名列表
* </p>
*/
private List<String> requestdomain;
/**
* <p>
* 描述:socket合法域名列表
* </p>
*/
private List<String> wsrequestdomain;
/**
* <p>
* 描述:uploadFile合法域名列表
* </p>
*/
private List<String> uploaddomain;
/**
* <p>
* 描述:downloadFile合法域名列表
* </p>
*/
private List<String> downloaddomain;
/**
* <p>
* 描述:udp合法域名列表
* </p>
*/
private List<String> udpdomain;
/**
* <p>
* 描述:业务域名列表
* </p>
*/
private List<String> bizdomain;
}