123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- 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 +
- '}';
- }
- }
|