SystemFormatDto.java 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  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. private String primeCost;//成本价=备案单价*货物数量(门店现有库存)
  48. private String goodsNumber;//可用库存数
  49. private String storeName;//门店名称
  50. private String payFlag;//支付方式
  51. private String orderSnWx;//微信流水号
  52. private String orderSnAli;//支付宝流水号
  53. public String getOutRefundNo() {
  54. return outRefundNo;
  55. }
  56. public void setOutRefundNo(String outRefundNo) {
  57. this.outRefundNo = outRefundNo;
  58. }
  59. public String getRefundTime() {
  60. return refundTime;
  61. }
  62. public void setRefundTime(String refundTime) {
  63. this.refundTime = refundTime;
  64. }
  65. public String getOrderStatus() {
  66. return orderStatus;
  67. }
  68. public void setOrderStatus(String orderStatus) {
  69. this.orderStatus = orderStatus;
  70. }
  71. public String getReceiptNo() {
  72. return receiptNo;
  73. }
  74. public void setReceiptNo(String receiptNo) {
  75. this.receiptNo = receiptNo;
  76. }
  77. public String getCashRegisterNo() {
  78. return cashRegisterNo;
  79. }
  80. public void setCashRegisterNo(String cashRegisterNo) {
  81. this.cashRegisterNo = cashRegisterNo;
  82. }
  83. public String getTimeStampDetails() {
  84. return timeStampDetails;
  85. }
  86. public void setTimeStampDetails(String timeStampDetails) {
  87. this.timeStampDetails = timeStampDetails;
  88. }
  89. public String getStaffID() {
  90. return staffID;
  91. }
  92. public void setStaffID(String staffID) {
  93. this.staffID = staffID;
  94. }
  95. public String getStaffName() {
  96. return staffName;
  97. }
  98. public void setStaffName(String staffName) {
  99. this.staffName = staffName;
  100. }
  101. public String getHsCode() {
  102. return hsCode;
  103. }
  104. public void setHsCode(String hsCode) {
  105. this.hsCode = hsCode;
  106. }
  107. public String getHsCodeName() {
  108. return hsCodeName;
  109. }
  110. public void setHsCodeName(String hsCodeName) {
  111. this.hsCodeName = hsCodeName;
  112. }
  113. public String getEmatouCode() {
  114. return ematouCode;
  115. }
  116. public void setEmatouCode(String ematouCode) {
  117. this.ematouCode = ematouCode;
  118. }
  119. public String getPlu() {
  120. return plu;
  121. }
  122. public void setPlu(String plu) {
  123. this.plu = plu;
  124. }
  125. public String getMychemID() {
  126. return mychemID;
  127. }
  128. public void setMychemID(String mychemID) {
  129. this.mychemID = mychemID;
  130. }
  131. public String getProductNameEN() {
  132. return productNameEN;
  133. }
  134. public void setProductNameEN(String productNameEN) {
  135. this.productNameEN = productNameEN;
  136. }
  137. public String getProductNameCN() {
  138. return productNameCN;
  139. }
  140. public void setProductNameCN(String productNameCN) {
  141. this.productNameCN = productNameCN;
  142. }
  143. public String getBarcode() {
  144. return barcode;
  145. }
  146. public void setBarcode(String barcode) {
  147. this.barcode = barcode;
  148. }
  149. public String getPackSize() {
  150. return packSize;
  151. }
  152. public void setPackSize(String packSize) {
  153. this.packSize = packSize;
  154. }
  155. public String getProductSpecification() {
  156. return productSpecification;
  157. }
  158. public void setProductSpecification(String productSpecification) {
  159. this.productSpecification = productSpecification;
  160. }
  161. public String getBrand() {
  162. return brand;
  163. }
  164. public void setBrand(String brand) {
  165. this.brand = brand;
  166. }
  167. public String getEdlp() {
  168. return edlp;
  169. }
  170. public void setEdlp(String edlp) {
  171. this.edlp = edlp;
  172. }
  173. public String getCurrentPrice() {
  174. return currentPrice;
  175. }
  176. public void setCurrentPrice(String currentPrice) {
  177. this.currentPrice = currentPrice;
  178. }
  179. public String getCostPrice() {
  180. return costPrice;
  181. }
  182. public void setCostPrice(String costPrice) {
  183. this.costPrice = costPrice;
  184. }
  185. public String getDeductionRate() {
  186. return deductionRate;
  187. }
  188. public void setDeductionRate(String deductionRate) {
  189. this.deductionRate = deductionRate;
  190. }
  191. public String getUnitSold() {
  192. return unitSold;
  193. }
  194. public void setUnitSold(String unitSold) {
  195. this.unitSold = unitSold;
  196. }
  197. public String getSales() {
  198. return sales;
  199. }
  200. public void setSales(String sales) {
  201. this.sales = sales;
  202. }
  203. public String getTaxAmount() {
  204. return taxAmount;
  205. }
  206. public void setTaxAmount(String taxAmount) {
  207. this.taxAmount = taxAmount;
  208. }
  209. public String getTotalSalesInclTax() {
  210. return totalSalesInclTax;
  211. }
  212. public void setTotalSalesInclTax(String totalSalesInclTax) {
  213. this.totalSalesInclTax = totalSalesInclTax;
  214. }
  215. public String getTaxRate() {
  216. return taxRate;
  217. }
  218. public void setTaxRate(String taxRate) {
  219. this.taxRate = taxRate;
  220. }
  221. public String getGp1() {
  222. return gp1;
  223. }
  224. public void setGp1(String gp1) {
  225. this.gp1 = gp1;
  226. }
  227. public String getGp2() {
  228. return gp2;
  229. }
  230. public void setGp2(String gp2) {
  231. this.gp2 = gp2;
  232. }
  233. public String getProductCategory() {
  234. return productCategory;
  235. }
  236. public void setProductCategory(String productCategory) {
  237. this.productCategory = productCategory;
  238. }
  239. public String getSupplierName() {
  240. return supplierName;
  241. }
  242. public void setSupplierName(String supplierName) {
  243. this.supplierName = supplierName;
  244. }
  245. public String getTransactionType() {
  246. return transactionType;
  247. }
  248. public void setTransactionType(String transactionType) {
  249. this.transactionType = transactionType;
  250. }
  251. public String getSaleReturnType() {
  252. return saleReturnType;
  253. }
  254. public void setSaleReturnType(String saleReturnType) {
  255. this.saleReturnType = saleReturnType;
  256. }
  257. public String getRemark() {
  258. return remark;
  259. }
  260. public void setRemark(String remark) {
  261. this.remark = remark;
  262. }
  263. public Integer getGoodsId() {
  264. return goodsId;
  265. }
  266. public void setGoodsId(Integer goodsId) {
  267. this.goodsId = goodsId;
  268. }
  269. public String getTaxPrice() {
  270. return taxPrice;
  271. }
  272. public void setTaxPrice(String taxPrice) {
  273. this.taxPrice = taxPrice;
  274. }
  275. public String getGoodsNumber() {
  276. return goodsNumber;
  277. }
  278. public void setGoodsNumber(String goodsNumber) {
  279. this.goodsNumber = goodsNumber;
  280. }
  281. public String getPrimeCost() {
  282. return primeCost;
  283. }
  284. public void setPrimeCost(String primeCost) {
  285. this.primeCost = primeCost;
  286. }
  287. public String getStoreName() {
  288. return storeName;
  289. }
  290. public void setStoreName(String storeName) {
  291. this.storeName = storeName;
  292. }
  293. public String getPayFlag() {
  294. return payFlag;
  295. }
  296. public void setPayFlag(String payFlag) {
  297. this.payFlag = payFlag;
  298. }
  299. public String getOrderSnWx() {
  300. return orderSnWx;
  301. }
  302. public void setOrderSnWx(String orderSnWx) {
  303. this.orderSnWx = orderSnWx;
  304. }
  305. public String getOrderSnAli() {
  306. return orderSnAli;
  307. }
  308. public void setOrderSnAli(String orderSnAli) {
  309. this.orderSnAli = orderSnAli;
  310. }
  311. }