|
@@ -1,5 +1,6 @@
|
|
|
package com.github.microservice.models.hxz;
|
|
package com.github.microservice.models.hxz;
|
|
|
|
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
import com.github.microservice.models.hxz.base.HxzBaseResult;
|
|
import com.github.microservice.models.hxz.base.HxzBaseResult;
|
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.AllArgsConstructor;
|
|
@@ -14,10 +15,15 @@ import lombok.NoArgsConstructor;
|
|
|
@AllArgsConstructor
|
|
@AllArgsConstructor
|
|
|
@NoArgsConstructor
|
|
@NoArgsConstructor
|
|
|
public class ServerTimeResult extends HxzBaseResult {
|
|
public class ServerTimeResult extends HxzBaseResult {
|
|
|
|
|
+ @JsonProperty("Time")
|
|
|
@Schema(description = "服务器时间")
|
|
@Schema(description = "服务器时间")
|
|
|
- private String Time;
|
|
|
|
|
|
|
+ private String Time = "";
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("WLUptate")
|
|
|
@Schema(description = "1:有白名单更新 0:无")
|
|
@Schema(description = "1:有白名单更新 0:无")
|
|
|
private int WLUptate;
|
|
private int WLUptate;
|
|
|
|
|
+
|
|
|
|
|
+ @JsonProperty("WLPage")
|
|
|
@Schema(description = "起始页数(当WLUptate为1却WLPage为0时 清除所有白名单)")
|
|
@Schema(description = "起始页数(当WLUptate为1却WLPage为0时 清除所有白名单)")
|
|
|
private int WLPage;
|
|
private int WLPage;
|
|
|
}
|
|
}
|