Skip to content

Commit afb3a64

Browse files
author
zhuchenyi
committed
新增ListResult列表类型
1 parent bf8a6fc commit afb3a64

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package com.example.retrofit_net.common
2+
3+
data class ListResultEntity<T>(
4+
val pageNum: Int,
5+
val pageSize: Int,
6+
val totalPage: Int,
7+
val totalCount: Int,
8+
val dataList: MutableList<T>,
9+
)

0 commit comments

Comments
 (0)