com.github.binarywang.wxpay.bean.result.WxPayOrderCloseResult Maven / Gradle / Ivy
package com.github.binarywang.wxpay.bean.result;
import com.thoughtworks.xstream.annotations.XStreamAlias;
/**
*
* 关闭订单结果对象类
* Created by Binary Wang on 2016-10-27.
* @author binarywang(Binary Wang)
*
*/
@XStreamAlias("xml")
public class WxPayOrderCloseResult extends WxPayBaseResult {
/**
* 业务结果描述
*/
@XStreamAlias("result_msg")
private String resultMsg;
public String getResultMsg() {
return this.resultMsg;
}
public void setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy