2021与蓝度共同重构项目,服务端
liuhaonan
2021-12-24 4965d8affe8ab2f3302bda6c62f45dc5fd455f93
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
package com.sandu.ximon.admin.utils.response;
 
import com.alibaba.fastjson.JSON;
import lombok.Data;
 
import java.util.List;
 
@Data
public class VnnoxPlayerListResponse implements VnnoxResponse<VnnoxPlayerListResponse> {
 
 
    private Integer total;
 
    private VnnoxPlayerPageInfoResponse pageInfo;
 
    private List<VnnoxPlayerResponse> rows;
 
 
 
    @Override
    public VnnoxPlayerListResponse parse(com.aliyuncs.CommonResponse commonEntity) {
        return null;
    }
 
    @Override
    public VnnoxPlayerListResponse parse(CommonResponse commonEntity) {
        return  JSON.parseObject(commonEntity.getDataJson(),VnnoxPlayerListResponse.class);
    }
}