mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-10-07 00:15:15 +08:00
18 lines
303 B
Java
18 lines
303 B
Java
package plus.bookshelf.Common.Response;
|
|
|
|
public enum CommonReturnTypeStatus {
|
|
SUCCESS("success"),
|
|
FAILED("failed");
|
|
|
|
private String str;
|
|
|
|
private CommonReturnTypeStatus(String str) {
|
|
this.str = str;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return str;
|
|
}
|
|
}
|