123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- package com.kmall.admin.entity;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- import java.util.List;
- /**
- * @author Scott
- * @email
- * @date 2017-08-13 10:41:09
- */
- public class PurchaseSalesInStockDetail implements Serializable {
- private static final long serialVersionUID = 1L;
- private String orderSn;
- private String time;
- private String type;
- private String addNum;
- private String lessNum;
- private String endingInventory;
- private String inventory;
- private String costPrice;
- private String retailPrice;
- private String addAmount;
- private String lessAmount;
- private String price;
- public String getOrderSn() {
- return orderSn;
- }
- public void setOrderSn(String orderSn) {
- this.orderSn = orderSn;
- }
- public String getTime() {
- return time;
- }
- public void setTime(String time) {
- this.time = time;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getAddNum() {
- return addNum;
- }
- public void setAddNum(String addNum) {
- this.addNum = addNum;
- }
- public String getLessNum() {
- return lessNum;
- }
- public void setLessNum(String lessNum) {
- this.lessNum = lessNum;
- }
- public String getEndingInventory() {
- return endingInventory;
- }
- public void setEndingInventory(String endingInventory) {
- this.endingInventory = endingInventory;
- }
- public String getInventory() {
- return inventory;
- }
- public void setInventory(String inventory) {
- this.inventory = inventory;
- }
- public String getCostPrice() {
- return costPrice;
- }
- public void setCostPrice(String costPrice) {
- this.costPrice = costPrice;
- }
- public String getRetailPrice() {
- return retailPrice;
- }
- public void setRetailPrice(String retailPrice) {
- this.retailPrice = retailPrice;
- }
- public String getAddAmount() {
- return addAmount;
- }
- public void setAddAmount(String addAmount) {
- this.addAmount = addAmount;
- }
- public String getLessAmount() {
- return lessAmount;
- }
- public void setLessAmount(String lessAmount) {
- this.lessAmount = lessAmount;
- }
- public String getPrice() {
- return price;
- }
- public void setPrice(String price) {
- this.price = price;
- }
- }
|