123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- 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<NewCmFinanceCharge> {
- 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;
- }
- }
|