com.alipay.api.domain.ProductQuantity 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, 2024-04-28 18:58:19
*/
public class ProductQuantity extends AlipayObject {
private static final long serialVersionUID = 5645235938219883514L;
/**
* 产品数量
*/
@ApiField("quantity")
private String quantity;
/**
* 产品定量数量 当前字段已废弃(使用RecycleProduct中的unit_type属性)
*/
@ApiField("unit_type")
@Deprecated
private String unitType;
public String getQuantity() {
return this.quantity;
}
public void setQuantity(String quantity) {
this.quantity = quantity;
}
public String getUnitType() {
return this.unitType;
}
public void setUnitType(String unitType) {
this.unitType = unitType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy