com.alipay.api.domain.AlipayOpenMiniAmpeDevicemodelBatchqueryModel 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-03 11:54:02
*/
public class AlipayOpenMiniAmpeDevicemodelBatchqueryModel extends AlipayObject {
private static final long serialVersionUID = 4367639334216653138L;
/**
* 产品ID,必填
*/
@ApiField("product_id")
private Long productId;
/**
* 场景码,申请后平台分配,必填
*/
@ApiField("scene_code")
private String sceneCode;
public Long getProductId() {
return this.productId;
}
public void setProductId(Long productId) {
this.productId = productId;
}
public String getSceneCode() {
return this.sceneCode;
}
public void setSceneCode(String sceneCode) {
this.sceneCode = sceneCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy