package com.kmall.admin.haikong.dto; import com.fasterxml.jackson.annotation.JsonProperty; import java.io.Serializable; import java.math.BigDecimal; /** * 订单明细信息 * @author lhm * @createDate 2021-12-07 */ public class OrderInfoItemDTO implements Serializable { private static final long serialVersionUID = -5010285187879982199L; @JsonProperty("order_id") private String orderId; @JsonProperty("image_url") private String imageUrl; private String bn; private String barcode; private String name; private BigDecimal cost; private BigDecimal price; @JsonProperty("buy_price") private BigDecimal buyPrice; private String itemcode; private BigDecimal amount; private Integer nums; @JsonProperty("is_tax") private String tax; @JsonProperty("tax_price") private BigDecimal taxPrice; public String getOrderId() { return orderId; } public void setOrderId(String orderId) { this.orderId = orderId; } public String getImageUrl() { return imageUrl; } public void setImageUrl(String imageUrl) { this.imageUrl = imageUrl; } public String getBn() { return bn; } public void setBn(String bn) { this.bn = bn; } public String getBarcode() { return barcode; } public void setBarcode(String barcode) { this.barcode = barcode; } public String getName() { return name; } public void setName(String name) { this.name = name; } public BigDecimal getCost() { return cost; } public void setCost(BigDecimal cost) { this.cost = cost; } public BigDecimal getPrice() { return price; } public void setPrice(BigDecimal price) { this.price = price; } public String getItemcode() { return itemcode; } public void setItemcode(String itemcode) { this.itemcode = itemcode; } public BigDecimal getAmount() { return amount; } public void setAmount(BigDecimal amount) { this.amount = amount; } public Integer getNums() { return nums; } public void setNums(Integer nums) { this.nums = nums; } public String getTax() { return tax; } public void setTax(String tax) { this.tax = tax; } public BigDecimal getTaxPrice() { return taxPrice; } public void setTaxPrice(BigDecimal taxPrice) { this.taxPrice = taxPrice; } public BigDecimal getBuyPrice() { return buyPrice; } public void setBuyPrice(BigDecimal buyPrice) { this.buyPrice = buyPrice; } @Override public String toString() { return "OrderInfoItemDTO{" + "orderId='" + orderId + '\'' + ", imageUrl='" + imageUrl + '\'' + ", bn='" + bn + '\'' + ", barcode='" + barcode + '\'' + ", name='" + name + '\'' + ", cost=" + cost + ", price=" + price + ", buyPrice=" + buyPrice + ", itemcode='" + itemcode + '\'' + ", amount=" + amount + ", nums=" + nums + ", tax=" + tax + ", taxPrice=" + taxPrice + '}'; } }