123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- package com.emato.biz.domain.mall;
- import java.util.Date;
- /**
- * 响应销售数据
- *
- * @author frankeleyn
- * @email lvjian@qhdswl.com
- * @date 2023/4/10 17:24
- */
- public class SalesDataResVO {
- private String storeName;//门店名称
- private String storeNameSn;//门店名称
- private String receiptNo;// 销售单号
- private String cashRegisterNo;// 收银台
- private String timeStampDetails;// 销售时间
- private String staffID;// 收银员
- private String staffName;// 收银员姓名
- private String hsCodeName;// 品类名称
- private String ematouCode;// 商品编码
- private String plu;// PLU
- private String mychemID;// MychemID
- private String productNameEN;// 商品名称(英文)
- private String productNameCN;// 商品名称(中文)
- private String barcode;// 商品主条码
- private String packSize;// 规格
- private String productSpecification;// 单位
- private String brand;// 品牌
- private String edlp;// 日常价
- private String currentPrice;// 实际销售价
- private String costPrice;// 进货价
- private String supplierName;// 主供应商名称
- private String transactionType;// 销售类型
- private String saleReturnType;// 退货类型
- private String remark;// 备注
- private String orderStatus;//订单状态
- private String taxPrice; // 税费
- private String payFlag;//支付方式
- private String orderSnWx;//微信流水号
- private String orderSnAli;//支付宝流水号
- public String getStoreName() {
- return storeName;
- }
- public void setStoreName(String storeName) {
- this.storeName = storeName;
- }
- public String getStoreNameSn() {
- return storeNameSn;
- }
- public void setStoreNameSn(String storeNameSn) {
- this.storeNameSn = storeNameSn;
- }
- public String getReceiptNo() {
- return receiptNo;
- }
- public void setReceiptNo(String receiptNo) {
- this.receiptNo = receiptNo;
- }
- public String getCashRegisterNo() {
- return cashRegisterNo;
- }
- public void setCashRegisterNo(String cashRegisterNo) {
- this.cashRegisterNo = cashRegisterNo;
- }
- public String getTimeStampDetails() {
- return timeStampDetails;
- }
- public void setTimeStampDetails(String timeStampDetails) {
- this.timeStampDetails = timeStampDetails;
- }
- public String getStaffID() {
- return staffID;
- }
- public void setStaffID(String staffID) {
- this.staffID = staffID;
- }
- public String getStaffName() {
- return staffName;
- }
- public void setStaffName(String staffName) {
- this.staffName = staffName;
- }
- public String getHsCodeName() {
- return hsCodeName;
- }
- public void setHsCodeName(String hsCodeName) {
- this.hsCodeName = hsCodeName;
- }
- public String getEmatouCode() {
- return ematouCode;
- }
- public void setEmatouCode(String ematouCode) {
- this.ematouCode = ematouCode;
- }
- public String getPlu() {
- return plu;
- }
- public void setPlu(String plu) {
- this.plu = plu;
- }
- public String getMychemID() {
- return mychemID;
- }
- public void setMychemID(String mychemID) {
- this.mychemID = mychemID;
- }
- public String getProductNameEN() {
- return productNameEN;
- }
- public void setProductNameEN(String productNameEN) {
- this.productNameEN = productNameEN;
- }
- public String getProductNameCN() {
- return productNameCN;
- }
- public void setProductNameCN(String productNameCN) {
- this.productNameCN = productNameCN;
- }
- public String getBarcode() {
- return barcode;
- }
- public void setBarcode(String barcode) {
- this.barcode = barcode;
- }
- public String getPackSize() {
- return packSize;
- }
- public void setPackSize(String packSize) {
- this.packSize = packSize;
- }
- public String getProductSpecification() {
- return productSpecification;
- }
- public void setProductSpecification(String productSpecification) {
- this.productSpecification = productSpecification;
- }
- public String getBrand() {
- return brand;
- }
- public void setBrand(String brand) {
- this.brand = brand;
- }
- public String getEdlp() {
- return edlp;
- }
- public void setEdlp(String edlp) {
- this.edlp = edlp;
- }
- public String getCurrentPrice() {
- return currentPrice;
- }
- public void setCurrentPrice(String currentPrice) {
- this.currentPrice = currentPrice;
- }
- public String getCostPrice() {
- return costPrice;
- }
- public void setCostPrice(String costPrice) {
- this.costPrice = costPrice;
- }
- public String getSupplierName() {
- return supplierName;
- }
- public void setSupplierName(String supplierName) {
- this.supplierName = supplierName;
- }
- public String getTransactionType() {
- return transactionType;
- }
- public void setTransactionType(String transactionType) {
- this.transactionType = transactionType;
- }
- public String getSaleReturnType() {
- return saleReturnType;
- }
- public void setSaleReturnType(String saleReturnType) {
- this.saleReturnType = saleReturnType;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- public String getOrderStatus() {
- return orderStatus;
- }
- public void setOrderStatus(String orderStatus) {
- this.orderStatus = orderStatus;
- }
- public String getTaxPrice() {
- return taxPrice;
- }
- public void setTaxPrice(String taxPrice) {
- this.taxPrice = taxPrice;
- }
- public String getPayFlag() {
- return payFlag;
- }
- public void setPayFlag(String payFlag) {
- this.payFlag = payFlag;
- }
- public String getOrderSnWx() {
- return orderSnWx;
- }
- public void setOrderSnWx(String orderSnWx) {
- this.orderSnWx = orderSnWx;
- }
- public String getOrderSnAli() {
- return orderSnAli;
- }
- public void setOrderSnAli(String orderSnAli) {
- this.orderSnAli = orderSnAli;
- }
- }
|