using System; /// /// ReturnBean 的摘要说明 /// public class ReturnBean { private String return_code = null; private String return_msg = null; private String appid = null; private String mch_id = null; private String nonce_str = null; private String sign = null; private String result_code = null; private String prepay_id = null; private String trade_type = null; private String mweb_url = null; private string str; public ReturnBean(string str) { this.return_code = WX_Util.extract(str, "return_code"); this.return_msg = WX_Util.extract(str, "return_msg"); this.appid = WX_Util.extract(str, "appid"); this.mch_id = WX_Util.extract(str, "mch_id"); this.nonce_str = WX_Util.extract(str, "nonce_str"); this.sign = WX_Util.extract(str, "sign"); this.result_code = WX_Util.extract(str, "result_code"); this.prepay_id = WX_Util.extract(str, "prepay_id"); this.trade_type = WX_Util.extract(str, "trade_type"); this.mweb_url = WX_Util.extract(str, "mweb_url"); } public String getReturn_code() { return return_code; } public void setReturn_code(String return_code) { this.return_code = return_code; } public String getReturn_msg() { return return_msg; } public void setReturn_msg(String return_msg) { this.return_msg = return_msg; } public String getAppid() { return appid; } public void setAppid(String appid) { this.appid = appid; } public String getMch_id() { return mch_id; } public void setMch_id(String mch_id) { this.mch_id = mch_id; } public String getNonce_str() { return nonce_str; } public void setNonce_str(String nonce_str) { this.nonce_str = nonce_str; } public String getSign() { return sign; } public void setSign(String sign) { this.sign = sign; } public String getResult_code() { return result_code; } public void setResult_code(String result_code) { this.result_code = result_code; } public String getPrepay_id() { return prepay_id; } public void setPrepay_id(String prepay_id) { this.prepay_id = prepay_id; } public String getTrade_type() { return trade_type; } public void setTrade_type(String trade_type) { this.trade_type = trade_type; } public String getMweb_url() { return mweb_url; } public void setMweb_url(String mweb_url) { this.mweb_url = mweb_url; } }