GoodsTransportInfoDetailExcelDto.java 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package com.kmall.admin.dto;
  2. import java.io.Serializable;
  3. public class GoodsTransportInfoDetailExcelDto implements Serializable {
  4. /**
  5. * 是否在途(0:是,1:否,默认为0)
  6. */
  7. private String wayStatus;
  8. /**
  9. * 商品sku
  10. */
  11. private String sku;
  12. /**
  13. * 供应商id
  14. */
  15. private String supplierId;
  16. /**
  17. * 原产地
  18. */
  19. private String originCountry;
  20. /**
  21. * 数量
  22. */
  23. private String num;
  24. /**
  25. * 创建人编号
  26. */
  27. private String createrSn;
  28. /**
  29. * 修改人编号
  30. */
  31. private String moderSn;
  32. public String getWayStatus() {
  33. return wayStatus;
  34. }
  35. public void setWayStatus(String wayStatus) {
  36. this.wayStatus = wayStatus;
  37. }
  38. public String getSku() {
  39. return sku;
  40. }
  41. public void setSku(String sku) {
  42. this.sku = sku;
  43. }
  44. public String getSupplierId() {
  45. return supplierId;
  46. }
  47. public void setSupplierId(String supplierId) {
  48. this.supplierId = supplierId;
  49. }
  50. public String getOriginCountry() {
  51. return originCountry;
  52. }
  53. public void setOriginCountry(String originCountry) {
  54. this.originCountry = originCountry;
  55. }
  56. public String getNum() {
  57. return num;
  58. }
  59. public void setNum(String num) {
  60. this.num = num;
  61. }
  62. public String getCreaterSn() {
  63. return createrSn;
  64. }
  65. public void setCreaterSn(String createrSn) {
  66. this.createrSn = createrSn;
  67. }
  68. public String getModerSn() {
  69. return moderSn;
  70. }
  71. public void setModerSn(String moderSn) {
  72. this.moderSn = moderSn;
  73. }
  74. @Override
  75. public String toString() {
  76. return "GoodsTransportInfoDetailExcelDto{" +
  77. "wayStatus='" + wayStatus + '\'' +
  78. ", sku='" + sku + '\'' +
  79. ", supplierId='" + supplierId + '\'' +
  80. ", originCountry='" + originCountry + '\'' +
  81. ", num='" + num + '\'' +
  82. ", createrSn='" + createrSn + '\'' +
  83. ", moderSn='" + moderSn + '\'' +
  84. '}';
  85. }
  86. public GoodsTransportInfoDetailExcelDto() {
  87. }
  88. public GoodsTransportInfoDetailExcelDto(String wayStatus, String sku, String supplierId, String originCountry, String num, String createrSn, String moderSn) {
  89. this.wayStatus = wayStatus;
  90. this.sku = sku;
  91. this.supplierId = supplierId;
  92. this.originCountry = originCountry;
  93. this.num = num;
  94. this.createrSn = createrSn;
  95. this.moderSn = moderSn;
  96. }
  97. }