admin
2024-07-03 a40e0e51331e5e6f69e8bed5940512b29150c7a9
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;
}