SystemFormatDto.java 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  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 Integer goodsId; // 商品id
  43. private String orderStatus;//订单状态
  44. private String taxPrice; // 税费
  45. private String outRefundNo;//退款订单号
  46. private String refundTime;//退款时间
  47. public String getOutRefundNo() {
  48. return outRefundNo;
  49. }
  50. public void setOutRefundNo(String outRefundNo) {
  51. this.outRefundNo = outRefundNo;
  52. }
  53. public String getRefundTime() {
  54. return refundTime;
  55. }
  56. public void setRefundTime(String refundTime) {
  57. this.refundTime = refundTime;
  58. }
  59. public String getOrderStatus() {
  60. return orderStatus;
  61. }
  62. public void setOrderStatus(String orderStatus) {
  63. this.orderStatus = orderStatus;
  64. }
  65. public String getReceiptNo() {
  66. return receiptNo;
  67. }
  68. public void setReceiptNo(String receiptNo) {
  69. this.receiptNo = receiptNo;
  70. }
  71. public String getCashRegisterNo() {
  72. return cashRegisterNo;
  73. }
  74. public void setCashRegisterNo(String cashRegisterNo) {
  75. this.cashRegisterNo = cashRegisterNo;
  76. }
  77. public String getTimeStampDetails() {
  78. return timeStampDetails;
  79. }
  80. public void setTimeStampDetails(String timeStampDetails) {
  81. this.timeStampDetails = timeStampDetails;
  82. }
  83. public String getStaffID() {
  84. return staffID;
  85. }
  86. public void setStaffID(String staffID) {
  87. this.staffID = staffID;
  88. }
  89. public String getStaffName() {
  90. return staffName;
  91. }
  92. public void setStaffName(String staffName) {
  93. this.staffName = staffName;
  94. }
  95. public String getHsCode() {
  96. return hsCode;
  97. }
  98. public void setHsCode(String hsCode) {
  99. this.hsCode = hsCode;
  100. }
  101. public String getHsCodeName() {
  102. return hsCodeName;
  103. }
  104. public void setHsCodeName(String hsCodeName) {
  105. this.hsCodeName = hsCodeName;
  106. }
  107. public String getEmatouCode() {
  108. return ematouCode;
  109. }
  110. public void setEmatouCode(String ematouCode) {
  111. this.ematouCode = ematouCode;
  112. }
  113. public String getPlu() {
  114. return plu;
  115. }
  116. public void setPlu(String plu) {
  117. this.plu = plu;
  118. }
  119. public String getMychemID() {
  120. return mychemID;
  121. }
  122. public void setMychemID(String mychemID) {
  123. this.mychemID = mychemID;
  124. }
  125. public String getProductNameEN() {
  126. return productNameEN;
  127. }
  128. public void setProductNameEN(String productNameEN) {
  129. this.productNameEN = productNameEN;
  130. }
  131. public String getProductNameCN() {
  132. return productNameCN;
  133. }
  134. public void setProductNameCN(String productNameCN) {
  135. this.productNameCN = productNameCN;
  136. }
  137. public String getBarcode() {
  138. return barcode;
  139. }
  140. public void setBarcode(String barcode) {
  141. this.barcode = barcode;
  142. }
  143. public String getPackSize() {
  144. return packSize;
  145. }
  146. public void setPackSize(String packSize) {
  147. this.packSize = packSize;
  148. }
  149. public String getProductSpecification() {
  150. return productSpecification;
  151. }
  152. public void setProductSpecification(String productSpecification) {
  153. this.productSpecification = productSpecification;
  154. }
  155. public String getBrand() {
  156. return brand;
  157. }
  158. public void setBrand(String brand) {
  159. this.brand = brand;
  160. }
  161. public String getEdlp() {
  162. return edlp;
  163. }
  164. public void setEdlp(String edlp) {
  165. this.edlp = edlp;
  166. }
  167. public String getCurrentPrice() {
  168. return currentPrice;
  169. }
  170. public void setCurrentPrice(String currentPrice) {
  171. this.currentPrice = currentPrice;
  172. }
  173. public String getCostPrice() {
  174. return costPrice;
  175. }
  176. public void setCostPrice(String costPrice) {
  177. this.costPrice = costPrice;
  178. }
  179. public String getDeductionRate() {
  180. return deductionRate;
  181. }
  182. public void setDeductionRate(String deductionRate) {
  183. this.deductionRate = deductionRate;
  184. }
  185. public String getUnitSold() {
  186. return unitSold;
  187. }
  188. public void setUnitSold(String unitSold) {
  189. this.unitSold = unitSold;
  190. }
  191. public String getSales() {
  192. return sales;
  193. }
  194. public void setSales(String sales) {
  195. this.sales = sales;
  196. }
  197. public String getTaxAmount() {
  198. return taxAmount;
  199. }
  200. public void setTaxAmount(String taxAmount) {
  201. this.taxAmount = taxAmount;
  202. }
  203. public String getTotalSalesInclTax() {
  204. return totalSalesInclTax;
  205. }
  206. public void setTotalSalesInclTax(String totalSalesInclTax) {
  207. this.totalSalesInclTax = totalSalesInclTax;
  208. }
  209. public String getTaxRate() {
  210. return taxRate;
  211. }
  212. public void setTaxRate(String taxRate) {
  213. this.taxRate = taxRate;
  214. }
  215. public String getGp1() {
  216. return gp1;
  217. }
  218. public void setGp1(String gp1) {
  219. this.gp1 = gp1;
  220. }
  221. public String getGp2() {
  222. return gp2;
  223. }
  224. public void setGp2(String gp2) {
  225. this.gp2 = gp2;
  226. }
  227. public String getProductCategory() {
  228. return productCategory;
  229. }
  230. public void setProductCategory(String productCategory) {
  231. this.productCategory = productCategory;
  232. }
  233. public String getSupplierName() {
  234. return supplierName;
  235. }
  236. public void setSupplierName(String supplierName) {
  237. this.supplierName = supplierName;
  238. }
  239. public String getTransactionType() {
  240. return transactionType;
  241. }
  242. public void setTransactionType(String transactionType) {
  243. this.transactionType = transactionType;
  244. }
  245. public String getSaleReturnType() {
  246. return saleReturnType;
  247. }
  248. public void setSaleReturnType(String saleReturnType) {
  249. this.saleReturnType = saleReturnType;
  250. }
  251. public String getRemark() {
  252. return remark;
  253. }
  254. public void setRemark(String remark) {
  255. this.remark = remark;
  256. }
  257. public Integer getGoodsId() {
  258. return goodsId;
  259. }
  260. public void setGoodsId(Integer goodsId) {
  261. this.goodsId = goodsId;
  262. }
  263. public String getTaxPrice() {
  264. return taxPrice;
  265. }
  266. public void setTaxPrice(String taxPrice) {
  267. this.taxPrice = taxPrice;
  268. }
  269. }