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

com.alipay.api.response.AlipayEcoEduKtBillingQueryResponse 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.eco.edu.kt.billing.query response.
 * 
 * @author auto create
 * @since 1.0, 2024-07-04 17:31:56
 */
public class AlipayEcoEduKtBillingQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 1693982815563685979L;

	/** 
	 * NOT_PAY  待缴费
PAYING  支付中
PAY_SUCCESS 支付成功,处理中
BILLING_SUCCESS 缴费成功
TIMEOUT_CLOSED 逾期关闭账单
ISV_CLOSED 账单关闭
	 */
	@ApiField("order_status")
	private String orderStatus;

	/** 
	 * ISV发送账单时输入ISV端的账单号
	 */
	@ApiField("out_trade_no")
	private String outTradeNo;

	public void setOrderStatus(String orderStatus) {
		this.orderStatus = orderStatus;
	}
	public String getOrderStatus( ) {
		return this.orderStatus;
	}

	public void setOutTradeNo(String outTradeNo) {
		this.outTradeNo = outTradeNo;
	}
	public String getOutTradeNo( ) {
		return this.outTradeNo;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy