123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- package com.kmall.admin.dto;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * 进销存明细dto(商品全景)
- */
- public class InventoryDetailDto implements Serializable {
- private static final long serialVersionUID = 1L;
- // id
- private Integer id;
- // 单据号
- private String documentNo;
- // 日期
- private Date inventoryDate;
- // 方式
- private String inventoryModel;
- // 数量(+)
- private Integer numberAdd;
- // 数量(-)
- private Integer numberSub;
- // 期末库存
- private Integer endingInventory;
- // 应存数量
- private Integer shouldNumber;
- // 成本价
- private Double costPrice;
- // 售价
- private Double salePrice;
- // 金额进价(-)
- private Double moneyBidAdd;
- // 金额进价(-)
- private Double moneyBidSub;
- // 期末金额(进价)
- private Double endingPrice;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getDocumentNo() {
- return documentNo;
- }
- public void setDocumentNo(String documentNo) {
- this.documentNo = documentNo;
- }
- public Date getInventoryDate() {
- return inventoryDate;
- }
- public void setInventoryDate(Date inventoryDate) {
- this.inventoryDate = inventoryDate;
- }
- public String getInventoryModel() {
- return inventoryModel;
- }
- public void setInventoryModel(String inventoryModel) {
- this.inventoryModel = inventoryModel;
- }
- public Integer getNumberAdd() {
- return numberAdd;
- }
- public void setNumberAdd(Integer numberAdd) {
- this.numberAdd = numberAdd;
- }
- public Integer getNumberSub() {
- return numberSub;
- }
- public void setNumberSub(Integer numberSub) {
- this.numberSub = numberSub;
- }
- public Integer getEndingInventory() {
- return endingInventory;
- }
- public void setEndingInventory(Integer endingInventory) {
- this.endingInventory = endingInventory;
- }
- public Integer getShouldNumber() {
- return shouldNumber;
- }
- public void setShouldNumber(Integer shouldNumber) {
- this.shouldNumber = shouldNumber;
- }
- public Double getCostPrice() {
- return costPrice;
- }
- public void setCostPrice(Double costPrice) {
- this.costPrice = costPrice;
- }
- public Double getSalePrice() {
- return salePrice;
- }
- public void setSalePrice(Double salePrice) {
- this.salePrice = salePrice;
- }
- public Double getMoneyBidAdd() {
- return moneyBidAdd;
- }
- public void setMoneyBidAdd(Double moneyBidAdd) {
- this.moneyBidAdd = moneyBidAdd;
- }
- public Double getMoneyBidSub() {
- return moneyBidSub;
- }
- public void setMoneyBidSub(Double moneyBidSub) {
- this.moneyBidSub = moneyBidSub;
- }
- public Double getEndingPrice() {
- return endingPrice;
- }
- public void setEndingPrice(Double endingPrice) {
- this.endingPrice = endingPrice;
- }
- public InventoryDetailDto() {
- }
- public InventoryDetailDto(Integer id, String documentNo, Date inventoryDate, String inventoryModel, Integer numberAdd, Integer numberSub, Integer endingInventory, Integer shouldNumber, Double costPrice, Double salePrice, Double moneyBidAdd, Double moneyBidSub, Double endingPrice) {
- this.id = id;
- this.documentNo = documentNo;
- this.inventoryDate = inventoryDate;
- this.inventoryModel = inventoryModel;
- this.numberAdd = numberAdd;
- this.numberSub = numberSub;
- this.endingInventory = endingInventory;
- this.shouldNumber = shouldNumber;
- this.costPrice = costPrice;
- this.salePrice = salePrice;
- this.moneyBidAdd = moneyBidAdd;
- this.moneyBidSub = moneyBidSub;
- this.endingPrice = endingPrice;
- }
- @Override
- public String toString() {
- return "InventoryDetailDto{" +
- "id=" + id +
- ", documentNo='" + documentNo + '\'' +
- ", inventoryDate=" + inventoryDate +
- ", inventoryModel='" + inventoryModel + '\'' +
- ", numberAdd=" + numberAdd +
- ", numberSub=" + numberSub +
- ", endingInventory=" + endingInventory +
- ", shouldNumber=" + shouldNumber +
- ", costPrice=" + costPrice +
- ", salePrice=" + salePrice +
- ", moneyBidAdd=" + moneyBidAdd +
- ", moneyBidSub=" + moneyBidSub +
- ", endingPrice=" + endingPrice +
- '}';
- }
- }
|