@@ -6,7 +6,7 @@ plugins {
ext {
GROUP_ID = 'com.wenext.android'
ARTIFACT_ID = 'frame-bom'
- VERSION = '6.1.1'
+ VERSION = '6.1.3'
}
dependencies {
@@ -7,7 +7,7 @@ plugins {
ARTIFACT_ID = 'frame-network'
- VERSION = '6.1.0'
+ VERSION = '6.1.2'
if (project.FRAME_DEBUG != "true") {
@@ -0,0 +1,8 @@
+package com.adealink.frame.network.data
+
+import com.google.gson.annotations.SerializedName
+data class PageReq(
+ @SerializedName("size") val size: Int, //页面大小
+ @SerializedName("next") val next: String?, //页码
+)