package com.caimei.modules.order.entity; import com.thinkgem.jeesite.common.persistence.DataEntity; import java.util.Date; /** * 出账信息Entity * * @author LiJun * @version 2018-08-27 */ public class NewCmFinanceCharge extends DataEntity { private static final long serialVersionUID = 1L; private String status; // 应付状态---状态 1待支付 2待财务确认 3已收到款 4未收到款 private Integer orderId;//主订单ID private String orderSequence; //订单序列号-- 订单编号(主订单)+序列ID private String orderSubmitType; // :个人自己下单 1:企业自己下单 2:员工帮会所下单 3:协销帮会所下单 4:后台下单 5:采美豆订单 private String orderType; // 订单类型 协销订单 0 普通订单 1 private String orderProductIds; // 订单商品ID,多个用逗号隔开(目前只存在单个进账) private String transactionType; // 付款类型--- 102线下-建设银行7297、103线下-中信银行0897、104线下-中信银行7172、105线上-易宝支付 private String receiptType; //收款方类型--0公账 1私账 private String totalAmount; // 总金额/总价 private String deductionAmount; // 抵扣总额 private String chargeAmount; // 应收商品总额 private String productReceived;//订单商品已收 private String productUncollected;//订单商品未收 private String chargeStatus; // 应收状态--- 1待支付 2待财务确认 3已收到款 4未收到款 private String taxRateFee; // 应付税费 private String cmFee; // 应付采美金额 private String shopFee; // 应付供应商金额 private String otherFee; // 应付第三方金额 private String shopName; // 供应商名称 private Date applyDate; // 申请时间 private Date auditDate; // 审核时间 private String startTime; // 审核开始时间 private String endTime; // 审核结束时间 //格外增加显示字段 private String productName; //商品名 private String totalShopPay; //已付供应商总和 private String totalOtherPay; //已付第三方总和 private String totalTaxRateFee; //已付税费总和 private String searchOrderType; // 订单搜索类型 1主动下单 2协销订单 3后台订单【对应orderSubmitType--主动下单:0、1、2、5;协销订单:3;后台订单:4】 private String divideRequestNo;//易宝分账请求号 public String getTotalTaxRateFee() { return totalTaxRateFee; } public void setTotalTaxRateFee(String totalTaxRateFee) { this.totalTaxRateFee = totalTaxRateFee; } public String getReceiptType() { return receiptType; } public void setReceiptType(String receiptType) { this.receiptType = receiptType; } public String getStatus() { return status; } public void setStatus(String status) { this.status = status; } public Integer getOrderId() { return orderId; } public void setOrderId(Integer orderId) { this.orderId = orderId; } public String getOrderSequence() { return orderSequence; } public void setOrderSequence(String orderSequence) { this.orderSequence = orderSequence; } public String getOrderSubmitType() { return orderSubmitType; } public void setOrderSubmitType(String orderSubmitType) { this.orderSubmitType = orderSubmitType; } public String getOrderType() { return orderType; } public void setOrderType(String orderType) { this.orderType = orderType; } public String getOrderProductIds() { return orderProductIds; } public void setOrderProductIds(String orderProductIds) { this.orderProductIds = orderProductIds; } public String getTransactionType() { return transactionType; } public void setTransactionType(String transactionType) { this.transactionType = transactionType; } public String getTotalAmount() { return totalAmount; } public void setTotalAmount(String totalAmount) { this.totalAmount = totalAmount; } public String getDeductionAmount() { return deductionAmount; } public void setDeductionAmount(String deductionAmount) { this.deductionAmount = deductionAmount; } public String getChargeAmount() { return chargeAmount; } public void setChargeAmount(String chargeAmount) { this.chargeAmount = chargeAmount; } public String getChargeStatus() { return chargeStatus; } public void setChargeStatus(String chargeStatus) { this.chargeStatus = chargeStatus; } public String getTaxRateFee() { return taxRateFee; } public void setTaxRateFee(String taxRateFee) { this.taxRateFee = taxRateFee; } public String getCmFee() { return cmFee; } public void setCmFee(String cmFee) { this.cmFee = cmFee; } public String getShopFee() { return shopFee; } public void setShopFee(String shopFee) { this.shopFee = shopFee; } public String getOtherFee() { return otherFee; } public void setOtherFee(String otherFee) { this.otherFee = otherFee; } public String getShopName() { return shopName; } public void setShopName(String shopName) { this.shopName = shopName; } public Date getApplyDate() { return applyDate; } public void setApplyDate(Date applyDate) { this.applyDate = applyDate; } public Date getAuditDate() { return auditDate; } public void setAuditDate(Date auditDate) { this.auditDate = auditDate; } public String getStartTime() { return startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getEndTime() { return endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public String getProductName() { return productName; } public void setProductName(String productName) { this.productName = productName; } public String getTotalShopPay() { return totalShopPay; } public void setTotalShopPay(String totalShopPay) { this.totalShopPay = totalShopPay; } public String getTotalOtherPay() { return totalOtherPay; } public void setTotalOtherPay(String totalOtherPay) { this.totalOtherPay = totalOtherPay; } public String getSearchOrderType() { return searchOrderType; } public void setSearchOrderType(String searchOrderType) { this.searchOrderType = searchOrderType; } public String getProductReceived() { return productReceived; } public void setProductReceived(String productReceived) { this.productReceived = productReceived; } public String getProductUncollected() { return productUncollected; } public void setProductUncollected(String productUncollected) { this.productUncollected = productUncollected; } public String getDivideRequestNo() { return divideRequestNo; } public void setDivideRequestNo(String divideRequestNo) { this.divideRequestNo = divideRequestNo; } }