mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-08-02 05:20:15 +08:00
Optimize WeChat login interface
This commit is contained in:
@ -5,8 +5,6 @@ import java.io.Serializable;
|
||||
|
||||
import ai.chat2db.server.tools.base.constant.EasyToolsConstant;
|
||||
import ai.chat2db.server.tools.base.wrapper.Result;
|
||||
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.SuperBuilder;
|
||||
@ -27,7 +25,6 @@ public class ActionResult implements Serializable, Result {
|
||||
*
|
||||
* @mock true
|
||||
*/
|
||||
@NotNull
|
||||
private Boolean success;
|
||||
|
||||
/**
|
||||
|
@ -3,11 +3,8 @@ package ai.chat2db.server.tools.base.wrapper.result;
|
||||
import java.io.Serializable;
|
||||
import java.util.function.Function;
|
||||
|
||||
|
||||
import ai.chat2db.server.tools.base.constant.EasyToolsConstant;
|
||||
import ai.chat2db.server.tools.base.wrapper.Result;
|
||||
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.experimental.SuperBuilder;
|
||||
@ -27,7 +24,6 @@ public class DataResult<T> implements Serializable, Result<T> {
|
||||
*
|
||||
* @mock true
|
||||
*/
|
||||
@NotNull
|
||||
private Boolean success;
|
||||
|
||||
/**
|
||||
|
@ -31,7 +31,6 @@ public class ListResult<T> implements Serializable, Result<T> {
|
||||
*
|
||||
* @mock true
|
||||
*/
|
||||
@NotNull
|
||||
private Boolean success;
|
||||
|
||||
/**
|
||||
|
@ -32,7 +32,6 @@ public class PageResult<T> implements Serializable, Result<List<T>> {
|
||||
*
|
||||
* @mock true
|
||||
*/
|
||||
@NotNull
|
||||
private Boolean success;
|
||||
|
||||
/**
|
||||
|
@ -32,7 +32,6 @@ public class WebPageResult<T> implements Serializable, Result<List<T>> {
|
||||
*
|
||||
* @mock true
|
||||
*/
|
||||
@NotNull
|
||||
private Boolean success;
|
||||
/**
|
||||
* 异常编码
|
||||
|
Reference in New Issue
Block a user