|
@@ -17,7 +17,7 @@ public class SystemBean {
|
|
|
public Integer id;
|
|
public Integer id;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
- * 是否有VIP限制,true表示必须要VIP才能使用特殊服务,false表示免费开放中...
|
|
|
|
|
|
|
+ * 是否限制数据访问
|
|
|
*/
|
|
*/
|
|
|
@Basic
|
|
@Basic
|
|
|
@Column(name = "isRestMode", nullable = false, insertable = true, updatable = true)
|
|
@Column(name = "isRestMode", nullable = false, insertable = true, updatable = true)
|
|
@@ -36,4 +36,11 @@ public class SystemBean {
|
|
|
@Basic
|
|
@Basic
|
|
|
@Column(columnDefinition = "MEDIUMTEXT", name = "zfb", nullable = false, insertable = true, updatable = true)
|
|
@Column(columnDefinition = "MEDIUMTEXT", name = "zfb", nullable = false, insertable = true, updatable = true)
|
|
|
public String zfb = "https://qr.alipay.com/fkx18482hw01dsf3rauxk9b";
|
|
public String zfb = "https://qr.alipay.com/fkx18482hw01dsf3rauxk9b";
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 是否启用广告模式
|
|
|
|
|
+ */
|
|
|
|
|
+ @Basic
|
|
|
|
|
+ @Column(name = "isAdMode", nullable = false, insertable = true, updatable = true)
|
|
|
|
|
+ public Boolean isAdMode = false;
|
|
|
}
|
|
}
|