1
0

SalesDataResVO.java 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. package com.emato.biz.domain.mall;
  2. import java.util.Date;
  3. /**
  4. * 响应销售数据
  5. *
  6. * @author frankeleyn
  7. * @email lvjian@qhdswl.com
  8. * @date 2023/4/10 17:24
  9. */
  10. public class SalesDataResVO {
  11. private String storeName;//门店名称
  12. private String storeNameSn;//门店名称
  13. private String receiptNo;// 销售单号
  14. private String cashRegisterNo;// 收银台
  15. private String timeStampDetails;// 销售时间
  16. private String staffID;// 收银员
  17. private String staffName;// 收银员姓名
  18. private String hsCodeName;// 品类名称
  19. private String ematouCode;// 商品编码
  20. private String plu;// PLU
  21. private String mychemID;// MychemID
  22. private String productNameEN;// 商品名称(英文)
  23. private String productNameCN;// 商品名称(中文)
  24. private String barcode;// 商品主条码
  25. private String packSize;// 规格
  26. private String productSpecification;// 单位
  27. private String brand;// 品牌
  28. private String edlp;// 日常价
  29. private String currentPrice;// 实际销售价
  30. private String costPrice;// 进货价
  31. private String supplierName;// 主供应商名称
  32. private String transactionType;// 销售类型
  33. private String saleReturnType;// 退货类型
  34. private String remark;// 备注
  35. private String orderStatus;//订单状态
  36. private String taxPrice; // 税费
  37. private String payFlag;//支付方式
  38. private String orderSnWx;//微信流水号
  39. private String orderSnAli;//支付宝流水号
  40. public String getStoreName() {
  41. return storeName;
  42. }
  43. public void setStoreName(String storeName) {
  44. this.storeName = storeName;
  45. }
  46. public String getStoreNameSn() {
  47. return storeNameSn;
  48. }
  49. public void setStoreNameSn(String storeNameSn) {
  50. this.storeNameSn = storeNameSn;
  51. }
  52. public String getReceiptNo() {
  53. return receiptNo;
  54. }
  55. public void setReceiptNo(String receiptNo) {
  56. this.receiptNo = receiptNo;
  57. }
  58. public String getCashRegisterNo() {
  59. return cashRegisterNo;
  60. }
  61. public void setCashRegisterNo(String cashRegisterNo) {
  62. this.cashRegisterNo = cashRegisterNo;
  63. }
  64. public String getTimeStampDetails() {
  65. return timeStampDetails;
  66. }
  67. public void setTimeStampDetails(String timeStampDetails) {
  68. this.timeStampDetails = timeStampDetails;
  69. }
  70. public String getStaffID() {
  71. return staffID;
  72. }
  73. public void setStaffID(String staffID) {
  74. this.staffID = staffID;
  75. }
  76. public String getStaffName() {
  77. return staffName;
  78. }
  79. public void setStaffName(String staffName) {
  80. this.staffName = staffName;
  81. }
  82. public String getHsCodeName() {
  83. return hsCodeName;
  84. }
  85. public void setHsCodeName(String hsCodeName) {
  86. this.hsCodeName = hsCodeName;
  87. }
  88. public String getEmatouCode() {
  89. return ematouCode;
  90. }
  91. public void setEmatouCode(String ematouCode) {
  92. this.ematouCode = ematouCode;
  93. }
  94. public String getPlu() {
  95. return plu;
  96. }
  97. public void setPlu(String plu) {
  98. this.plu = plu;
  99. }
  100. public String getMychemID() {
  101. return mychemID;
  102. }
  103. public void setMychemID(String mychemID) {
  104. this.mychemID = mychemID;
  105. }
  106. public String getProductNameEN() {
  107. return productNameEN;
  108. }
  109. public void setProductNameEN(String productNameEN) {
  110. this.productNameEN = productNameEN;
  111. }
  112. public String getProductNameCN() {
  113. return productNameCN;
  114. }
  115. public void setProductNameCN(String productNameCN) {
  116. this.productNameCN = productNameCN;
  117. }
  118. public String getBarcode() {
  119. return barcode;
  120. }
  121. public void setBarcode(String barcode) {
  122. this.barcode = barcode;
  123. }
  124. public String getPackSize() {
  125. return packSize;
  126. }
  127. public void setPackSize(String packSize) {
  128. this.packSize = packSize;
  129. }
  130. public String getProductSpecification() {
  131. return productSpecification;
  132. }
  133. public void setProductSpecification(String productSpecification) {
  134. this.productSpecification = productSpecification;
  135. }
  136. public String getBrand() {
  137. return brand;
  138. }
  139. public void setBrand(String brand) {
  140. this.brand = brand;
  141. }
  142. public String getEdlp() {
  143. return edlp;
  144. }
  145. public void setEdlp(String edlp) {
  146. this.edlp = edlp;
  147. }
  148. public String getCurrentPrice() {
  149. return currentPrice;
  150. }
  151. public void setCurrentPrice(String currentPrice) {
  152. this.currentPrice = currentPrice;
  153. }
  154. public String getCostPrice() {
  155. return costPrice;
  156. }
  157. public void setCostPrice(String costPrice) {
  158. this.costPrice = costPrice;
  159. }
  160. public String getSupplierName() {
  161. return supplierName;
  162. }
  163. public void setSupplierName(String supplierName) {
  164. this.supplierName = supplierName;
  165. }
  166. public String getTransactionType() {
  167. return transactionType;
  168. }
  169. public void setTransactionType(String transactionType) {
  170. this.transactionType = transactionType;
  171. }
  172. public String getSaleReturnType() {
  173. return saleReturnType;
  174. }
  175. public void setSaleReturnType(String saleReturnType) {
  176. this.saleReturnType = saleReturnType;
  177. }
  178. public String getRemark() {
  179. return remark;
  180. }
  181. public void setRemark(String remark) {
  182. this.remark = remark;
  183. }
  184. public String getOrderStatus() {
  185. return orderStatus;
  186. }
  187. public void setOrderStatus(String orderStatus) {
  188. this.orderStatus = orderStatus;
  189. }
  190. public String getTaxPrice() {
  191. return taxPrice;
  192. }
  193. public void setTaxPrice(String taxPrice) {
  194. this.taxPrice = taxPrice;
  195. }
  196. public String getPayFlag() {
  197. return payFlag;
  198. }
  199. public void setPayFlag(String payFlag) {
  200. this.payFlag = payFlag;
  201. }
  202. public String getOrderSnWx() {
  203. return orderSnWx;
  204. }
  205. public void setOrderSnWx(String orderSnWx) {
  206. this.orderSnWx = orderSnWx;
  207. }
  208. public String getOrderSnAli() {
  209. return orderSnAli;
  210. }
  211. public void setOrderSnAli(String orderSnAli) {
  212. this.orderSnAli = orderSnAli;
  213. }
  214. }