1
0

FreightItemEntity.java 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. * 实体
  7. * 表名 mall_freight_item
  8. *
  9. * @author huangyq
  10. * @email admin@qhdswl.com
  11. * @date 2018-10-22 15:18:16
  12. */
  13. public class FreightItemEntity implements Serializable {
  14. private static final long serialVersionUID = 1L;
  15. /**
  16. * 主键
  17. */
  18. private Integer id;
  19. /**
  20. * 运费模版id
  21. */
  22. private Integer freId;
  23. /**
  24. * 配送范围
  25. */
  26. private String deliveryArea;
  27. /**
  28. * 首件(个,kg,m³)
  29. */
  30. private String firstPiece;
  31. /**
  32. * 运费
  33. */
  34. private BigDecimal freight;
  35. /**
  36. * 续件(个,kg,m³)
  37. */
  38. private String continuePiece;
  39. /**
  40. * 续费
  41. */
  42. private BigDecimal renew;
  43. private Integer isDelete = 0;
  44. /**
  45. * 设置:主键
  46. */
  47. public void setId(Integer id) {
  48. this.id = id;
  49. }
  50. /**
  51. * 获取:主键
  52. */
  53. public Integer getId() {
  54. return id;
  55. }
  56. /**
  57. * 设置:运费模版id
  58. */
  59. public void setFreId(Integer freId) {
  60. this.freId = freId;
  61. }
  62. /**
  63. * 获取:运费模版id
  64. */
  65. public Integer getFreId() {
  66. return freId;
  67. }
  68. /**
  69. * 设置:配送范围
  70. */
  71. public void setDeliveryArea(String deliveryArea) {
  72. this.deliveryArea = deliveryArea;
  73. }
  74. /**
  75. * 获取:配送范围
  76. */
  77. public String getDeliveryArea() {
  78. return deliveryArea;
  79. }
  80. /**
  81. * 设置:首件(个,kg,m³)
  82. */
  83. public void setFirstPiece(String firstPiece) {
  84. this.firstPiece = firstPiece;
  85. }
  86. /**
  87. * 获取:首件(个,kg,m³)
  88. */
  89. public String getFirstPiece() {
  90. return firstPiece;
  91. }
  92. /**
  93. * 设置:运费
  94. */
  95. public void setFreight(BigDecimal freight) {
  96. this.freight = freight;
  97. }
  98. /**
  99. * 获取:运费
  100. */
  101. public BigDecimal getFreight() {
  102. return freight;
  103. }
  104. /**
  105. * 设置:续件(个,kg,m³)
  106. */
  107. public void setContinuePiece(String continuePiece) {
  108. this.continuePiece = continuePiece;
  109. }
  110. /**
  111. * 获取:续件(个,kg,m³)
  112. */
  113. public String getContinuePiece() {
  114. return continuePiece;
  115. }
  116. /**
  117. * 设置:续费
  118. */
  119. public void setRenew(BigDecimal renew) {
  120. this.renew = renew;
  121. }
  122. /**
  123. * 获取:续费
  124. */
  125. public BigDecimal getRenew() {
  126. return renew;
  127. }
  128. public Integer getIsDelete() {
  129. return isDelete;
  130. }
  131. public void setIsDelete(Integer isDelete) {
  132. this.isDelete = isDelete;
  133. }
  134. }