package com.walker.pay.wechat.v2;
|
|
/**
|
* 微信V2版本的订单结果通知对象定义。
|
* @author 时克英
|
* @date 2023-01-16
|
*/
|
public class NotifyOrder {
|
|
public long getTotalMoney() {
|
return totalMoney;
|
}
|
|
public void setTotalMoney(long totalMoney) {
|
this.totalMoney = totalMoney;
|
}
|
|
public String getOpenId() {
|
return openId;
|
}
|
|
public void setOpenId(String openId) {
|
this.openId = openId;
|
}
|
|
public String getDeviceInfo() {
|
return deviceInfo;
|
}
|
|
public void setDeviceInfo(String deviceInfo) {
|
this.deviceInfo = deviceInfo;
|
}
|
|
public String getAttach() {
|
return attach;
|
}
|
|
public void setAttach(String attach) {
|
this.attach = attach;
|
}
|
|
private String attach; // 用户发起订单时,携带的业务数据,微信会原本返回。
|
private long totalMoney = 0;
|
private String openId;
|
private String deviceInfo;
|
}
|