| | |
| | | /** |
| | | * 记录列表 |
| | | */ |
| | | @JsonAlias(value = {"data","records","userFavoriteList","userBehaviorList","customerFavoritesList"}) |
| | | @JsonAlias( {"data","records","userFavoriteList","userBehaviorList","customerFavoritesList"}) |
| | | private List<T> records; |
| | | /** |
| | | * 当前页 |
| | | */ |
| | | @JsonAlias(value = {"pageCount","pageNum"}) |
| | | @JsonAlias( {"pageCount","pageNum"}) |
| | | private String pageNum; |
| | | /** |
| | | * 每页条数 |
| | | */ |
| | | @JsonAlias(value = {"pageSize",}) |
| | | @JsonAlias( {"pageSize",}) |
| | | private String pageSize; |
| | | /** |
| | | * 总数 |
| | | */ |
| | | @JsonAlias(value = {"totalCount","total"}) |
| | | @JsonAlias( {"totalCount","total"}) |
| | | private String total; |
| | | } |