1
2
3
4
5
6
7
8
9
10
11
12
| package com.taoke.autopay.android.data.network.entity;
|
| import com.google.gson.annotations.SerializedName;
|
| import java.util.List;
|
| public class PageResponse<T> {
| @SerializedName(value = "count", alternate = "totalElements")
| public Integer total;
| @SerializedName(value = "result", alternate = {"content", "list", "data"})
| public List<T> list;
| }
|
|