|
@@ -35,7 +35,7 @@ public class App {
|
|
|
/**
|
|
|
* 是否测试状态(测试中支付金额为1分)
|
|
|
*/
|
|
|
- private Boolean debug;
|
|
|
+ private boolean debug;
|
|
|
|
|
|
/**
|
|
|
* 创建时间
|
|
@@ -87,11 +87,11 @@ public class App {
|
|
|
this.returnUrl = returnUrl;
|
|
|
}
|
|
|
|
|
|
- public Boolean getDebug() {
|
|
|
+ public boolean getDebug() {
|
|
|
return debug;
|
|
|
}
|
|
|
|
|
|
- public void setDebug(Boolean debug) {
|
|
|
+ public void setDebug(boolean debug) {
|
|
|
this.debug = debug;
|
|
|
}
|
|
|
|