|
|
|
@@ -22,6 +22,7 @@ public class WxPayOrderSP { |
|
|
|
private String time_start; // 开始时间 |
|
|
|
private String time_expire; // 失效时间 |
|
|
|
private String sub_openid; // sub_openId |
|
|
|
private String profit_sharing; // 是否开启分账 |
|
|
|
|
|
|
|
public String getTime_start() { |
|
|
|
return time_start; |
|
|
|
@@ -159,6 +160,14 @@ public class WxPayOrderSP { |
|
|
|
this.sub_openid = sub_openid; |
|
|
|
} |
|
|
|
|
|
|
|
public String getProfit_sharing() { |
|
|
|
return profit_sharing; |
|
|
|
} |
|
|
|
|
|
|
|
public void setProfit_sharing(String profit_sharing) { |
|
|
|
this.profit_sharing = profit_sharing; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public String toString() { |
|
|
|
final StringBuilder sb = new StringBuilder("WxPayOrderSP{"); |
|
|
|
@@ -178,6 +187,7 @@ public class WxPayOrderSP { |
|
|
|
sb.append(", time_start='").append(time_start).append('\''); |
|
|
|
sb.append(", time_expire='").append(time_expire).append('\''); |
|
|
|
sb.append(", sub_openid='").append(sub_openid).append('\''); |
|
|
|
sb.append(", profit_sharing='").append(profit_sharing).append('\''); |
|
|
|
sb.append('}'); |
|
|
|
return sb.toString(); |
|
|
|
} |
|
|
|
|