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

com.alipay.api.domain.ShopIndustryLicense Maven / Gradle / Ivy

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-09 11:32:40
 */
public class ShopIndustryLicense extends AlipayObject {

	private static final long serialVersionUID = 2196457525656318648L;

	/**
	 * 资质图片信息
	 */
	@ApiField("license_pic")
	private String licensePic;

	/**
	 * 行业资质类型,需使用资质列表中类型
	 */
	@ApiField("license_type")
	private String licenseType;

	public String getLicensePic() {
		return this.licensePic;
	}
	public void setLicensePic(String licensePic) {
		this.licensePic = licensePic;
	}

	public String getLicenseType() {
		return this.licenseType;
	}
	public void setLicenseType(String licenseType) {
		this.licenseType = licenseType;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy