PurchaseSalesInStockDetail.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. package com.kmall.admin.entity;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import java.io.Serializable;
  4. import java.math.BigDecimal;
  5. import java.util.Date;
  6. import java.util.List;
  7. /**
  8. * @author Scott
  9. * @email
  10. * @date 2017-08-13 10:41:09
  11. */
  12. public class PurchaseSalesInStockDetail implements Serializable {
  13. private static final long serialVersionUID = 1L;
  14. private String orderSn;
  15. private String time;
  16. private String type;
  17. private String addNum;
  18. private String lessNum;
  19. private String endingInventory;
  20. private String inventory;
  21. private String costPrice;
  22. private String retailPrice;
  23. private String addAmount;
  24. private String lessAmount;
  25. private String price;
  26. public String getOrderSn() {
  27. return orderSn;
  28. }
  29. public void setOrderSn(String orderSn) {
  30. this.orderSn = orderSn;
  31. }
  32. public String getTime() {
  33. return time;
  34. }
  35. public void setTime(String time) {
  36. this.time = time;
  37. }
  38. public String getType() {
  39. return type;
  40. }
  41. public void setType(String type) {
  42. this.type = type;
  43. }
  44. public String getAddNum() {
  45. return addNum;
  46. }
  47. public void setAddNum(String addNum) {
  48. this.addNum = addNum;
  49. }
  50. public String getLessNum() {
  51. return lessNum;
  52. }
  53. public void setLessNum(String lessNum) {
  54. this.lessNum = lessNum;
  55. }
  56. public String getEndingInventory() {
  57. return endingInventory;
  58. }
  59. public void setEndingInventory(String endingInventory) {
  60. this.endingInventory = endingInventory;
  61. }
  62. public String getInventory() {
  63. return inventory;
  64. }
  65. public void setInventory(String inventory) {
  66. this.inventory = inventory;
  67. }
  68. public String getCostPrice() {
  69. return costPrice;
  70. }
  71. public void setCostPrice(String costPrice) {
  72. this.costPrice = costPrice;
  73. }
  74. public String getRetailPrice() {
  75. return retailPrice;
  76. }
  77. public void setRetailPrice(String retailPrice) {
  78. this.retailPrice = retailPrice;
  79. }
  80. public String getAddAmount() {
  81. return addAmount;
  82. }
  83. public void setAddAmount(String addAmount) {
  84. this.addAmount = addAmount;
  85. }
  86. public String getLessAmount() {
  87. return lessAmount;
  88. }
  89. public void setLessAmount(String lessAmount) {
  90. this.lessAmount = lessAmount;
  91. }
  92. public String getPrice() {
  93. return price;
  94. }
  95. public void setPrice(String price) {
  96. this.price = price;
  97. }
  98. }