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

com.alipay.api.domain.AppxSpuRejectReasonVO 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-29 11:18:38
 */
public class AppxSpuRejectReasonVO extends AlipayObject {

	private static final long serialVersionUID = 1586948132944592198L;

	/**
	 * 备注原因
	 */
	@ApiField("remark")
	private String remark;

	/**
	 * 风险项名称
	 */
	@ApiField("risk_name")
	private String riskName;

	public String getRemark() {
		return this.remark;
	}
	public void setRemark(String remark) {
		this.remark = remark;
	}

	public String getRiskName() {
		return this.riskName;
	}
	public void setRiskName(String riskName) {
		this.riskName = riskName;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy