XiMengJianYu/.svn/pristine/1f/1f1ac17893ff48d828fd63886b3b121a41c49eae.svn-base
2023-04-17 17:58:44 +08:00

44 lines
724 B
Plaintext
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.example.administrator.ximengjianyu.beans;
/**
* Created by Administrator on 2018/6/19.
* Date 2018/6/19
*/
public class TuiChuBean {
/**
* msg : 成功退出
* state : 200
* id :
*/
private String msg;
private String state;
private String id;
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}