提交 93e97256 authored 作者: Whispa's avatar Whispa

commit commit

上级 a256c10e
......@@ -7,6 +7,7 @@ public class LoginRequest {
private String password;
private String veryOldPassword;
private String fcm;
private boolean fromUser = false;
public LoginRequest(){
......@@ -18,7 +19,15 @@ public class LoginRequest {
this.password = password;
}
public LoginRequest(String account,String password,String fcm){
public void setFromUser(boolean fromUser) {
this.fromUser = fromUser;
}
public boolean isFromUser() {
return fromUser;
}
public LoginRequest(String account, String password, String fcm){
this.account = account;
this.password = password;
this.fcm = fcm;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论