Commit b3b88f83 by pye52

更新文档对于扫码状态变更的描述

parent 41cfa9b9
......@@ -7,15 +7,15 @@ import com.bgycc.smartcanteen.entity.PayData;
import java.util.Objects;
public class QRCodeState {
public static final int INIT_FAILED = -1;
public static final int IDLE = 0;
public static final int SCANNING = 1;
public static final int SUCCESS = 2;
public static final int FAILED = 3;
public static final int PAY = 4;
public static final int ILLEGAL = 5;
public static final int INIT_FAILED = -1;
@IntDef(value = {IDLE, SCANNING, SUCCESS, FAILED, PAY, ILLEGAL, INIT_FAILED})
@IntDef(value = {INIT_FAILED, IDLE, SCANNING, SUCCESS, FAILED, PAY, ILLEGAL})
public @interface QRCODE_STATE {
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment