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

com.alipay.api.domain.DeviceProductInfo 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-10-16 19:32:54
 */
public class DeviceProductInfo extends AlipayObject {

	private static final long serialVersionUID = 2813954717613677138L;

	/**
	 * 产品id
	 */
	@ApiField("product_id")
	private Long productId;

	/**
	 * 产品名称
	 */
	@ApiField("product_name")
	private String productName;

	public Long getProductId() {
		return this.productId;
	}
	public void setProductId(Long productId) {
		this.productId = productId;
	}

	public String getProductName() {
		return this.productName;
	}
	public void setProductName(String productName) {
		this.productName = productName;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy