第一次提交

This commit is contained in:
xuhuixiang
2023-03-13 10:07:44 +08:00
parent 0378d81708
commit e5ef7288f4
267 changed files with 17967 additions and 86 deletions

View File

@@ -0,0 +1,33 @@
package com.azhon.basic.bean;
/**
* 项目名: TODO-MVVM
* 包名 com.azhon.basic.bean
* 文件名: DialogBean
* 创建时间: 2019-03-27 on 20:54
* 描述: TODO 封装的对话框实体类
*
* @author xuhuixiang
*/
public final class DialogBean {
private boolean isShow;
private String msg;
public boolean isShow() {
return isShow;
}
public void setShow(boolean show) {
isShow = show;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
}