All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mizhousoft.weixin.util.WxPayUtils Maven / Gradle / Ivy

The newest version!
package com.mizhousoft.weixin.util;

import com.mizhousoft.weixin.payment.response.WxPayNotifyResponse;

/**
 * 工具类
 *
 */
public abstract class WxPayUtils
{
	public static WxPayNotifyResponse buildFailResponse()
	{
		WxPayNotifyResponse response = new WxPayNotifyResponse();
		response.setCode("FAIL");
		response.setMessage("Internal error");

		return response;
	}

	public static WxPayNotifyResponse buildOkResponse()
	{
		WxPayNotifyResponse response = new WxPayNotifyResponse();
		response.setCode("SUCCESS");

		return response;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy