You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
147 lines
3.1 KiB
147 lines
3.1 KiB
package com.hai.model;
|
|
|
|
// 分账返回
|
|
public class WxSharingOrderResp {
|
|
|
|
//返回状态码,通信标识,SUCCESS/FAIL
|
|
private String return_code;
|
|
//返回信息,通信标识OK
|
|
private String return_msg;
|
|
//业务结果,交易标识,SUCCESS/FAIL
|
|
private String result_code;
|
|
//错误代码
|
|
private String err_code;
|
|
//错误代码描述
|
|
private String err_code_des;
|
|
//商户号
|
|
private String mch_id;
|
|
//子商户号
|
|
private String sub_mch_id;
|
|
//公众账号id
|
|
private String appid;
|
|
|
|
private String sub_appid;
|
|
|
|
//随机字符串
|
|
private String nonce_str;
|
|
//签名
|
|
private String sign;
|
|
//微信支付订单号
|
|
private String transaction_id;
|
|
//商户分账单号(商户订单号)
|
|
private String out_order_no;
|
|
//商户分账单号
|
|
private String order_id;
|
|
|
|
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 getResult_code() {
|
|
return result_code;
|
|
}
|
|
|
|
public void setResult_code(String result_code) {
|
|
this.result_code = result_code;
|
|
}
|
|
|
|
public String getErr_code() {
|
|
return err_code;
|
|
}
|
|
|
|
public void setErr_code(String err_code) {
|
|
this.err_code = err_code;
|
|
}
|
|
|
|
public String getErr_code_des() {
|
|
return err_code_des;
|
|
}
|
|
|
|
public void setErr_code_des(String err_code_des) {
|
|
this.err_code_des = err_code_des;
|
|
}
|
|
|
|
public String getMch_id() {
|
|
return mch_id;
|
|
}
|
|
|
|
public void setMch_id(String mch_id) {
|
|
this.mch_id = mch_id;
|
|
}
|
|
|
|
public String getSub_mch_id() {
|
|
return sub_mch_id;
|
|
}
|
|
|
|
public void setSub_mch_id(String sub_mch_id) {
|
|
this.sub_mch_id = sub_mch_id;
|
|
}
|
|
|
|
public String getAppid() {
|
|
return appid;
|
|
}
|
|
|
|
public void setAppid(String appid) {
|
|
this.appid = appid;
|
|
}
|
|
|
|
public String getSub_appid() {
|
|
return sub_appid;
|
|
}
|
|
|
|
public void setSub_appid(String sub_appid) {
|
|
this.sub_appid = sub_appid;
|
|
}
|
|
|
|
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 getTransaction_id() {
|
|
return transaction_id;
|
|
}
|
|
|
|
public void setTransaction_id(String transaction_id) {
|
|
this.transaction_id = transaction_id;
|
|
}
|
|
|
|
public String getOut_order_no() {
|
|
return out_order_no;
|
|
}
|
|
|
|
public void setOut_order_no(String out_order_no) {
|
|
this.out_order_no = out_order_no;
|
|
}
|
|
|
|
public String getOrder_id() {
|
|
return order_id;
|
|
}
|
|
|
|
public void setOrder_id(String order_id) {
|
|
this.order_id = order_id;
|
|
}
|
|
}
|
|
|