Commit d0b76f76 by songyinghui

feature: 内容5期

parent 8941f4d9
...@@ -20,6 +20,13 @@ public class AccountAuthorizeVo implements Serializable { ...@@ -20,6 +20,13 @@ public class AccountAuthorizeVo implements Serializable {
*/ */
private String qrCode; private String qrCode;
/**
* 状态
* 1 初始化中 (此时携带key轮询生成二维码)
* 2 已完成 (此时会返回二维码数据)
*/
private Integer status;
public String getKey() { public String getKey() {
return key; return key;
} }
...@@ -35,4 +42,12 @@ public class AccountAuthorizeVo implements Serializable { ...@@ -35,4 +42,12 @@ public class AccountAuthorizeVo implements Serializable {
public void setQrCode(String qrCode) { public void setQrCode(String qrCode) {
this.qrCode = qrCode; this.qrCode = qrCode;
} }
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
} }
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 to comment