SystemFormatDto.java 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. package com.kmall.admin.dto;
  2. import java.io.Serializable;
  3. /**
  4. * @author 小问号
  5. * @email
  6. * @date 2020年11月19日14:15:24
  7. */
  8. public class SystemFormatDto implements Serializable {
  9. private static final long serialVersionUID = 1L;
  10. private String receiptNo;// 销售单号
  11. private String cashRegisterNo;// 收银台
  12. private String timeStampDetails;// 销售时间
  13. private String staffID;// 收银员
  14. private String staffName;// 收银员姓名
  15. private String hsCode;// 品类编码
  16. private String hsCodeName;// 品类名称
  17. private String ematouCode;// 商品编码
  18. private String plu;// PLU
  19. private String mychemID;// MychemID
  20. private String productNameEN;// 商品名称(英文)
  21. private String productNameCN;// 商品名称(中文)
  22. private String barcode;// 商品主条码
  23. private String packSize;// 规格
  24. private String productSpecification;// 单位
  25. private String brand;// 品牌
  26. private String edlp;// 日常价
  27. private String currentPrice;// 实际销售价
  28. private String costPrice;// 进货价
  29. private String deductionRate;// 扣率 (EDLP vs 实际销售价)
  30. private String unitSold;// 销售数量
  31. private String sales;// 销售额
  32. private String taxAmount;// 综合税额
  33. private String totalSalesInclTax;// 总销售额
  34. private String taxRate;// 综合税率
  35. private String gp1;// 预估毛利额
  36. private String gp2;// 预估毛利率
  37. private String productCategory;// 商品类型
  38. private String supplierName;// 主供应商名称
  39. private String transactionType;// 销售类型
  40. private String saleReturnType;// 退货类型
  41. private String remark;// 备注
  42. private String orderStatus;//订单状态
  43. public String getOrderStatus() {
  44. return orderStatus;
  45. }
  46. public void setOrderStatus(String orderStatus) {
  47. this.orderStatus = orderStatus;
  48. }
  49. public String getReceiptNo() {
  50. return receiptNo;
  51. }
  52. public void setReceiptNo(String receiptNo) {
  53. this.receiptNo = receiptNo;
  54. }
  55. public String getCashRegisterNo() {
  56. return cashRegisterNo;
  57. }
  58. public void setCashRegisterNo(String cashRegisterNo) {
  59. this.cashRegisterNo = cashRegisterNo;
  60. }
  61. public String getTimeStampDetails() {
  62. return timeStampDetails;
  63. }
  64. public void setTimeStampDetails(String timeStampDetails) {
  65. this.timeStampDetails = timeStampDetails;
  66. }
  67. public String getStaffID() {
  68. return staffID;
  69. }
  70. public void setStaffID(String staffID) {
  71. this.staffID = staffID;
  72. }
  73. public String getStaffName() {
  74. return staffName;
  75. }
  76. public void setStaffName(String staffName) {
  77. this.staffName = staffName;
  78. }
  79. public String getHsCode() {
  80. return hsCode;
  81. }
  82. public void setHsCode(String hsCode) {
  83. this.hsCode = hsCode;
  84. }
  85. public String getHsCodeName() {
  86. return hsCodeName;
  87. }
  88. public void setHsCodeName(String hsCodeName) {
  89. this.hsCodeName = hsCodeName;
  90. }
  91. public String getEmatouCode() {
  92. return ematouCode;
  93. }
  94. public void setEmatouCode(String ematouCode) {
  95. this.ematouCode = ematouCode;
  96. }
  97. public String getPlu() {
  98. return plu;
  99. }
  100. public void setPlu(String plu) {
  101. this.plu = plu;
  102. }
  103. public String getMychemID() {
  104. return mychemID;
  105. }
  106. public void setMychemID(String mychemID) {
  107. this.mychemID = mychemID;
  108. }
  109. public String getProductNameEN() {
  110. return productNameEN;
  111. }
  112. public void setProductNameEN(String productNameEN) {
  113. this.productNameEN = productNameEN;
  114. }
  115. public String getProductNameCN() {
  116. return productNameCN;
  117. }
  118. public void setProductNameCN(String productNameCN) {
  119. this.productNameCN = productNameCN;
  120. }
  121. public String getBarcode() {
  122. return barcode;
  123. }
  124. public void setBarcode(String barcode) {
  125. this.barcode = barcode;
  126. }
  127. public String getPackSize() {
  128. return packSize;
  129. }
  130. public void setPackSize(String packSize) {
  131. this.packSize = packSize;
  132. }
  133. public String getProductSpecification() {
  134. return productSpecification;
  135. }
  136. public void setProductSpecification(String productSpecification) {
  137. this.productSpecification = productSpecification;
  138. }
  139. public String getBrand() {
  140. return brand;
  141. }
  142. public void setBrand(String brand) {
  143. this.brand = brand;
  144. }
  145. public String getEdlp() {
  146. return edlp;
  147. }
  148. public void setEdlp(String edlp) {
  149. this.edlp = edlp;
  150. }
  151. public String getCurrentPrice() {
  152. return currentPrice;
  153. }
  154. public void setCurrentPrice(String currentPrice) {
  155. this.currentPrice = currentPrice;
  156. }
  157. public String getCostPrice() {
  158. return costPrice;
  159. }
  160. public void setCostPrice(String costPrice) {
  161. this.costPrice = costPrice;
  162. }
  163. public String getDeductionRate() {
  164. return deductionRate;
  165. }
  166. public void setDeductionRate(String deductionRate) {
  167. this.deductionRate = deductionRate;
  168. }
  169. public String getUnitSold() {
  170. return unitSold;
  171. }
  172. public void setUnitSold(String unitSold) {
  173. this.unitSold = unitSold;
  174. }
  175. public String getSales() {
  176. return sales;
  177. }
  178. public void setSales(String sales) {
  179. this.sales = sales;
  180. }
  181. public String getTaxAmount() {
  182. return taxAmount;
  183. }
  184. public void setTaxAmount(String taxAmount) {
  185. this.taxAmount = taxAmount;
  186. }
  187. public String getTotalSalesInclTax() {
  188. return totalSalesInclTax;
  189. }
  190. public void setTotalSalesInclTax(String totalSalesInclTax) {
  191. this.totalSalesInclTax = totalSalesInclTax;
  192. }
  193. public String getTaxRate() {
  194. return taxRate;
  195. }
  196. public void setTaxRate(String taxRate) {
  197. this.taxRate = taxRate;
  198. }
  199. public String getGp1() {
  200. return gp1;
  201. }
  202. public void setGp1(String gp1) {
  203. this.gp1 = gp1;
  204. }
  205. public String getGp2() {
  206. return gp2;
  207. }
  208. public void setGp2(String gp2) {
  209. this.gp2 = gp2;
  210. }
  211. public String getProductCategory() {
  212. return productCategory;
  213. }
  214. public void setProductCategory(String productCategory) {
  215. this.productCategory = productCategory;
  216. }
  217. public String getSupplierName() {
  218. return supplierName;
  219. }
  220. public void setSupplierName(String supplierName) {
  221. this.supplierName = supplierName;
  222. }
  223. public String getTransactionType() {
  224. return transactionType;
  225. }
  226. public void setTransactionType(String transactionType) {
  227. this.transactionType = transactionType;
  228. }
  229. public String getSaleReturnType() {
  230. return saleReturnType;
  231. }
  232. public void setSaleReturnType(String saleReturnType) {
  233. this.saleReturnType = saleReturnType;
  234. }
  235. public String getRemark() {
  236. return remark;
  237. }
  238. public void setRemark(String remark) {
  239. this.remark = remark;
  240. }
  241. }