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

com.alipay.api.response.AlipayEbppIndustrySupervisionPayCancelResponse Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.response;

import com.alipay.api.internal.mapping.ApiField;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.ebpp.industry.supervision.pay.cancel response.
 * 
 * @author auto create
 * @since 1.0, 2024-07-02 10:37:05
 */
public class AlipayEbppIndustrySupervisionPayCancelResponse extends AlipayResponse {

	private static final long serialVersionUID = 1619539822513172938L;

	/** 
	 * 关闭结果
	 */
	@ApiField("biz_status")
	private String bizStatus;

	/** 
	 * 外部流水号,本次创建支付单的请求id,重复请求幂等返回
	 */
	@ApiField("out_flow_id")
	private String outFlowId;

	/** 
	 * 外部订单号,本次发起支付关联的冻资单id
	 */
	@ApiField("out_order_no")
	private String outOrderNo;

	/** 
	 * 支付宝创建的内部支付单号。后续后续根据流水号或者外部订单号查询。
	 */
	@ApiField("trade_no")
	private String tradeNo;

	public void setBizStatus(String bizStatus) {
		this.bizStatus = bizStatus;
	}
	public String getBizStatus( ) {
		return this.bizStatus;
	}

	public void setOutFlowId(String outFlowId) {
		this.outFlowId = outFlowId;
	}
	public String getOutFlowId( ) {
		return this.outFlowId;
	}

	public void setOutOrderNo(String outOrderNo) {
		this.outOrderNo = outOrderNo;
	}
	public String getOutOrderNo( ) {
		return this.outOrderNo;
	}

	public void setTradeNo(String tradeNo) {
		this.tradeNo = tradeNo;
	}
	public String getTradeNo( ) {
		return this.tradeNo;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy