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

com.alipay.api.domain.ShopAuditResultDetail 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.domain;

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

/**
 * 门店审核结果详情
 *
 * @author auto create
 * @since 1.0, 2023-11-08 11:14:20
 */
public class ShopAuditResultDetail extends AlipayObject {

	private static final long serialVersionUID = 7371328887854536328L;

	/**
	 * 业务类型,比如行业资质类型
	 */
	@ApiField("biz_type")
	private String bizType;

	/**
	 * 驳回原因
	 */
	@ApiField("reason")
	private String reason;

	/**
	 * 结果,通过或者驳回
	 */
	@ApiField("result")
	private String result;

	public String getBizType() {
		return this.bizType;
	}
	public void setBizType(String bizType) {
		this.bizType = bizType;
	}

	public String getReason() {
		return this.reason;
	}
	public void setReason(String reason) {
		this.reason = reason;
	}

	public String getResult() {
		return this.result;
	}
	public void setResult(String result) {
		this.result = result;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy