Advertisement
muradul

Untitled

Oct 18th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1.  
  2. import java.io.Serializable;
  3.  
  4. /**
  5. * Created by Murad on 10/17/2017.
  6. */
  7. public class InventoryRestDetails implements Serializable {
  8.  
  9.  
  10.  
  11. private String productName;
  12. private String productType;
  13. private Integer quantity;
  14. private Integer skuQuantity;
  15. private Integer total;
  16. private Integer price;
  17.  
  18.  
  19. public InventoryRestDetails(String productName, String productType,Integer quantity, Integer skuQuantity, Integer total, Integer price) {
  20. this.productName = productName;
  21. this.quantity = quantity;
  22. this.skuQuantity = skuQuantity;
  23. this.total = total;
  24. this.price = price;
  25. this.productType=productType;
  26. }
  27.  
  28. public String getProductName() {
  29. return productName;
  30. }
  31.  
  32. public void setProductName(String productName) {
  33. this.productName = productName;
  34. }
  35.  
  36. public Integer getQuantity() {
  37. return quantity;
  38. }
  39.  
  40. public void setQuantity(Integer quantity) {
  41. this.quantity = quantity;
  42. }
  43.  
  44. public Integer getSkuQuantity() {
  45. return skuQuantity;
  46. }
  47.  
  48. public void setSkuQuantity(Integer skuQuantity) {
  49. this.skuQuantity = skuQuantity;
  50. }
  51.  
  52. public Integer getTotal() {
  53. return total;
  54. }
  55.  
  56. public void setTotal(Integer total) {
  57. this.total = total;
  58. }
  59.  
  60. public Integer getPrice() {
  61. return price;
  62. }
  63.  
  64. public void setPrice(Integer price) {
  65. this.price = price;
  66. }
  67.  
  68. public String getProductType() {
  69. return productType;
  70. }
  71.  
  72. public void setProductType(String productType) {
  73. this.productType = productType;
  74. }
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement