com.alipay.api.domain.SearchBoxServiceInfo 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-07-24 16:33:34
*/
public class SearchBoxServiceInfo extends AlipayObject {
private static final long serialVersionUID = 2445289634948581493L;
/**
* 服务类目编码
*/
@ApiField("service_category_code")
private String serviceCategoryCode;
/**
* 服务类目名称
*/
@ApiField("service_category_name")
private String serviceCategoryName;
/**
* 服务编码
*/
@ApiField("service_code")
private String serviceCode;
/**
* 服务名称
*/
@ApiField("service_name")
private String serviceName;
public String getServiceCategoryCode() {
return this.serviceCategoryCode;
}
public void setServiceCategoryCode(String serviceCategoryCode) {
this.serviceCategoryCode = serviceCategoryCode;
}
public String getServiceCategoryName() {
return this.serviceCategoryName;
}
public void setServiceCategoryName(String serviceCategoryName) {
this.serviceCategoryName = serviceCategoryName;
}
public String getServiceCode() {
return this.serviceCode;
}
public void setServiceCode(String serviceCode) {
this.serviceCode = serviceCode;
}
public String getServiceName() {
return this.serviceName;
}
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy