12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- package com.kmall.common.utils.wechat;
- public class WechatReverseApiResult {
- private String return_code;//返回状态码
- private String return_msg;//返回信息
- private String appid;//公众账号ID
- private String mch_id;//商户号
- private String nonce_str;//随机字符串
- private String sign;//签名
- private String result_code;//业务结果
- private String err_code;//错误代码
- private String err_code_des;//错误代码描述
- private String recall;//是否需要继续调用撤销,Y-需要,N-不需要
- 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 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 getRecall() {
- return recall;
- }
- public void setRecall(String recall) {
- this.recall = recall;
- }
- }
|