
com.alipay.api.domain.DeviceApplyOrderItemDto Maven / Gradle / Ivy
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 订单创建子单对象
*
* @author auto create
* @since 1.0, 2020-05-28 20:57:25
*/
public class DeviceApplyOrderItemDto extends AlipayObject {
private static final long serialVersionUID = 6765145148626168886L;
/**
* 申请数量,和sn数量保持一致
*/
@ApiField("apply_amount")
private Long applyAmount;
/**
* 订单计费模式
BILL(计费),NON_BILL(非计费)
*/
@ApiField("billed")
private String billed;
/**
* itemId
*/
@ApiField("item_id")
private String itemId;
/**
* 设备型号
*/
@ApiField("item_name")
private String itemName;
/**
* 设备型号
*/
@ApiField("model_number")
private String modelNumber;
/**
* 销售单价 保留两位小数
*/
@ApiField("selling_price")
private String sellingPrice;
/**
* sn列表
*/
@ApiListField("sn_list")
@ApiField("string")
private List snList;
/**
* 厂商id
*/
@ApiField("supplier_id")
private String supplierId;
public Long getApplyAmount() {
return this.applyAmount;
}
public void setApplyAmount(Long applyAmount) {
this.applyAmount = applyAmount;
}
public String getBilled() {
return this.billed;
}
public void setBilled(String billed) {
this.billed = billed;
}
public String getItemId() {
return this.itemId;
}
public void setItemId(String itemId) {
this.itemId = itemId;
}
public String getItemName() {
return this.itemName;
}
public void setItemName(String itemName) {
this.itemName = itemName;
}
public String getModelNumber() {
return this.modelNumber;
}
public void setModelNumber(String modelNumber) {
this.modelNumber = modelNumber;
}
public String getSellingPrice() {
return this.sellingPrice;
}
public void setSellingPrice(String sellingPrice) {
this.sellingPrice = sellingPrice;
}
public List getSnList() {
return this.snList;
}
public void setSnList(List snList) {
this.snList = snList;
}
public String getSupplierId() {
return this.supplierId;
}
public void setSupplierId(String supplierId) {
this.supplierId = supplierId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy