com.alipay.api.domain.ShopIndustryInfoDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
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;
}
}