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

com.alipay.api.domain.ShopIndustryInfoDTO 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.39.218.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, 2024-04-12 17:38:58
 */
public class ShopIndustryInfoDTO extends AlipayObject {

	private static final long serialVersionUID = 8184534183385259697L;

	/**
	 * 一级行业
	 */
	@ApiField("first_industry")
	private String firstIndustry;

	/**
	 * 二级行业
	 */
	@ApiField("second_industry")
	private String secondIndustry;

	/**
	 * 三级行业
	 */
	@ApiField("third_industry")
	private String thirdIndustry;

	public String getFirstIndustry() {
		return this.firstIndustry;
	}
	public void setFirstIndustry(String firstIndustry) {
		this.firstIndustry = firstIndustry;
	}

	public String getSecondIndustry() {
		return this.secondIndustry;
	}
	public void setSecondIndustry(String secondIndustry) {
		this.secondIndustry = secondIndustry;
	}

	public String getThirdIndustry() {
		return this.thirdIndustry;
	}
	public void setThirdIndustry(String thirdIndustry) {
		this.thirdIndustry = thirdIndustry;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy