!515 调整响应成功状态码为200,与全局保持一致

Merge pull request !515 from 武玉航/master
This commit is contained in:
若依 2022-06-24 01:16:59 +00:00 committed by Gitee
commit 1ccdd75019
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ public class R<T> implements Serializable
private static final long serialVersionUID = 1L;
/** 成功 */
public static final int SUCCESS = 0;
public static final int SUCCESS = 200;
/** 失败 */
public static final int FAIL = 500;