|
@@ -9,6 +9,7 @@ public class Club implements Serializable {
|
|
|
private String name;//会所名称
|
|
|
private String headpic; //门头照
|
|
|
private Double ableUserMoney; //账户实际可用余额
|
|
|
+ private String userMoney; //保留之后
|
|
|
private String contactNumber; //联系我们
|
|
|
private String introduction; //关于我们
|
|
|
|
|
@@ -75,4 +76,12 @@ public class Club implements Serializable {
|
|
|
public void setIntroduction(String introduction) {
|
|
|
this.introduction = introduction;
|
|
|
}
|
|
|
+
|
|
|
+ public String getUserMoney() {
|
|
|
+ return userMoney;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUserMoney(String userMoney) {
|
|
|
+ this.userMoney = userMoney;
|
|
|
+ }
|
|
|
}
|