mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 20:15:06 +08:00
19 lines
172 B
Java
19 lines
172 B
Java
|
|
package com.jsowell.common.enums;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 操作状态
|
||
|
|
*
|
||
|
|
* @author jsowell
|
||
|
|
*/
|
||
|
|
public enum BusinessStatus {
|
||
|
|
/**
|
||
|
|
* 成功
|
||
|
|
*/
|
||
|
|
SUCCESS,
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 失败
|
||
|
|
*/
|
||
|
|
FAIL,
|
||
|
|
}
|