FreightEntity.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. package com.kmall.admin.entity;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. import java.util.List;
  6. /**
  7. * 实体
  8. * 表名 mall_freight
  9. *
  10. * @author emato
  11. * @email admin@qhdswl.com
  12. * @date 2018-10-22 15:18:16
  13. */
  14. public class FreightEntity implements Serializable {
  15. private static final long serialVersionUID = 1L;
  16. /**
  17. * 主键
  18. */
  19. private Integer id;
  20. /**
  21. * 模版名称
  22. */
  23. private String name;
  24. /**
  25. * 模版类型:0,买家承担运费;1,卖家包邮
  26. */
  27. private String templateType;
  28. /**
  29. * 计价方式:0,按件数;1,按重量;2,按体积
  30. */
  31. private String pricingManner;
  32. /**
  33. * 默认模版:0,否;1,是
  34. */
  35. private String isDefault;
  36. private BigDecimal defaultFreight;
  37. private Integer isDelete = 0;
  38. private Integer storeId;
  39. private String merchSn;
  40. private String storeName;
  41. private String merchName;
  42. private List<FreightItemEntity> freightItemEntityList;
  43. public String getStoreName() {
  44. return storeName;
  45. }
  46. public void setStoreName(String storeName) {
  47. this.storeName = storeName;
  48. }
  49. public String getMerchName() {
  50. return merchName;
  51. }
  52. public void setMerchName(String merchName) {
  53. this.merchName = merchName;
  54. }
  55. public Integer getStoreId() {
  56. return storeId;
  57. }
  58. public void setStoreId(Integer storeId) {
  59. this.storeId = storeId;
  60. }
  61. public String getMerchSn() {
  62. return merchSn;
  63. }
  64. public void setMerchSn(String merchSn) {
  65. this.merchSn = merchSn;
  66. }
  67. /**
  68. * 设置:主键
  69. */
  70. public void setId(Integer id) {
  71. this.id = id;
  72. }
  73. /**
  74. * 获取:主键
  75. */
  76. public Integer getId() {
  77. return id;
  78. }
  79. /**
  80. * 设置:模版名称
  81. */
  82. public void setName(String name) {
  83. this.name = name;
  84. }
  85. /**
  86. * 获取:模版名称
  87. */
  88. public String getName() {
  89. return name;
  90. }
  91. /**
  92. * 设置:模版类型:0,买家承担运费;1,卖家包邮
  93. */
  94. public void setTemplateType(String templateType) {
  95. this.templateType = templateType;
  96. }
  97. /**
  98. * 获取:模版类型:0,买家承担运费;1,卖家包邮
  99. */
  100. public String getTemplateType() {
  101. return templateType;
  102. }
  103. /**
  104. * 设置:计价方式:0,按件数;1,按重量;2,按体积
  105. */
  106. public void setPricingManner(String pricingManner) {
  107. this.pricingManner = pricingManner;
  108. }
  109. /**
  110. * 获取:计价方式:0,按件数;1,按重量;2,按体积
  111. */
  112. public String getPricingManner() {
  113. return pricingManner;
  114. }
  115. /**
  116. * 设置:默认模版:0,否;1,是
  117. */
  118. public void setIsDefault(String isDefault) {
  119. this.isDefault = isDefault;
  120. }
  121. /**
  122. * 获取:默认模版:0,否;1,是
  123. */
  124. public String getIsDefault() {
  125. return isDefault;
  126. }
  127. public Integer getIsDelete() {
  128. return isDelete;
  129. }
  130. public void setIsDelete(Integer isDelete) {
  131. this.isDelete = isDelete;
  132. }
  133. public BigDecimal getDefaultFreight() {
  134. return defaultFreight;
  135. }
  136. public void setDefaultFreight(BigDecimal defaultFreight) {
  137. this.defaultFreight = defaultFreight;
  138. }
  139. public List<FreightItemEntity> getFreightItemEntityList() {
  140. return freightItemEntityList;
  141. }
  142. public void setFreightItemEntityList(List<FreightItemEntity> freightItemEntityList) {
  143. this.freightItemEntityList = freightItemEntityList;
  144. }
  145. }