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);
|
}
|
}
|