SystemFormatDto.java 7.4 KB

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