123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- package com.caimei.modules.order.entity;
- import java.util.List;
- /**
- * lwt
- * 收款详情 关联订单 Vo类
- */
- public class ReceiptOrderInfoVo {
- private String orderNo;
- private String orderID;
- private String organizeID; //组织id
- private String orderAmount;// 订单金额
- private String receiptAmount;// 已收金额
- private String customerName;//客户名称
- private String receiptStatus;//(收款买家)收款状态:1待收款、2部分收款、3已收款
- private String orderType;//订单类型 协销订单 0 普通订单 1
- private String orderTime;//下单时间
- private String relationType; // 关系类型:1返佣订单(返佣款)、2非返佣订单(订单款或者非订单款)
- private Integer userID; //订单用户id
- //----------------返佣款项 是根据子订单再去关联的主订单
- private String shopOrderNo;
- private String shopOrderID;
- private String shopOrderAmount; //子订单金额
- private String shopName; //供应商
- private List<ReceiptRecordVo> receiptRecordVo;
- private double payableAmount;
- private boolean receiptOrderFlag;// 判断订单中抹平的订单是否是和多个订单一起支付的,
- private Double shouldPayShopAmount; //应付金额
- private Double payedShopAmount; //已付供应商金额
- private Double refundsAmount; //已退款供应商金额
- public String getOrganizeID() {
- return organizeID;
- }
- public void setOrganizeID(String organizeID) {
- this.organizeID = organizeID;
- }
- public String getOrderNo() {
- return orderNo;
- }
- public void setOrderNo(String orderNo) {
- this.orderNo = orderNo;
- }
- public String getOrderID() {
- return orderID;
- }
- public void setOrderID(String orderID) {
- this.orderID = orderID;
- }
- public String getOrderAmount() {
- return orderAmount;
- }
- public void setOrderAmount(String orderAmount) {
- this.orderAmount = orderAmount;
- }
- public String getReceiptAmount() {
- return receiptAmount;
- }
- public void setReceiptAmount(String receiptAmount) {
- this.receiptAmount = receiptAmount;
- }
- public String getCustomerName() {
- return customerName;
- }
- public void setCustomerName(String customerName) {
- this.customerName = customerName;
- }
- public String getReceiptStatus() {
- return receiptStatus;
- }
- public void setReceiptStatus(String receiptStatus) {
- this.receiptStatus = receiptStatus;
- }
- public String getOrderType() {
- return orderType;
- }
- public void setOrderType(String orderType) {
- this.orderType = orderType;
- }
- public String getOrderTime() {
- return orderTime;
- }
- public void setOrderTime(String orderTime) {
- this.orderTime = orderTime;
- }
- public String getShopOrderNo() {
- return shopOrderNo;
- }
- public void setShopOrderNo(String shopOrderNo) {
- this.shopOrderNo = shopOrderNo;
- }
- public String getShopOrderID() {
- return shopOrderID;
- }
- public void setShopOrderID(String shopOrderID) {
- this.shopOrderID = shopOrderID;
- }
- public String getShopOrderAmount() {
- return shopOrderAmount;
- }
- public void setShopOrderAmount(String shopOrderAmount) {
- this.shopOrderAmount = shopOrderAmount;
- }
- public String getShopName() {
- return shopName;
- }
- public void setShopName(String shopName) {
- this.shopName = shopName;
- }
- public List<ReceiptRecordVo> getReceiptRecordVo() {
- return receiptRecordVo;
- }
- public void setReceiptRecordVo(List<ReceiptRecordVo> receiptRecordVo) {
- this.receiptRecordVo = receiptRecordVo;
- }
- public String getRelationType() {
- return relationType;
- }
- public void setRelationType(String relationType) {
- this.relationType = relationType;
- }
- public double getPayableAmount() {
- return payableAmount;
- }
- public void setPayableAmount(double payableAmount) {
- this.payableAmount = payableAmount;
- }
- public boolean isReceiptOrderFlag() {
- return receiptOrderFlag;
- }
- public void setReceiptOrderFlag(boolean receiptOrderFlag) {
- this.receiptOrderFlag = receiptOrderFlag;
- }
- public Integer getUserID() {
- return userID;
- }
- public void setUserID(Integer userID) {
- this.userID = userID;
- }
- public Double getShouldPayShopAmount() {
- return shouldPayShopAmount;
- }
- public void setShouldPayShopAmount(Double shouldPayShopAmount) {
- this.shouldPayShopAmount = shouldPayShopAmount;
- }
- public Double getPayedShopAmount() {
- return payedShopAmount;
- }
- public void setPayedShopAmount(Double payedShopAmount) {
- this.payedShopAmount = payedShopAmount;
- }
- public Double getRefundsAmount() {
- return refundsAmount;
- }
- public void setRefundsAmount(Double refundsAmount) {
- this.refundsAmount = refundsAmount;
- }
- }
|