123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023 |
- package com.caimei.modules.order.entity;
- import com.caimei.modules.bulkpurchase.entity.OrderInvoice;
- import com.caimei.modules.product.entity.CmPromotion;
- import com.thinkgem.jeesite.common.persistence.DataEntity;
- import java.beans.Transient;
- import java.util.List;
- /**
- * @author lwt
- * @date 2018-07-24
- * @description 主订单表
- */
- public class NewOrder extends DataEntity<NewOrder> {
- private Integer orderID; // bigint(11) not null,
- private String orderNo; // varchar(30) comment '订单编号',
- private Integer userID; // bigint(11), 订单归属人
- //采美组织: 默认为null,具体对应cm_mall_organize表ID
- private Integer organizeID;
- private Integer organizeStoreId; // 组织门店id
- private String shopOrderIDs; // varchar(100) comment '子订单ID',
- private String orderSubmitType; // char(2) comment '订单提交类型',
- private String status; // char(2) comment '订单状态'
- // v5.0.0新状态 '0待确认,11待收待发,12待收部发,13待收全发,21部收待发,22部收部发,23部收全发,31已收待发,32已收部发,33已收全发,4交易完成,5订单完成,6已关闭,7交易全退'
- private Double productTotalFee; // decimal(20,6) comment '商品总金额',
- private Double shouldPayProduct; //应收商品金额==应付合计(只需要付商品金额)
- private String hasActProduct; // '是否包含活动商品(受订单未支付自动关闭时间影响) 0 否 1 是',
- private Double orderTotalFee; // decimal(20,6) comment '订单总金额',
- private Double payableAmount; // 应付金额
- private Double payTotalFee; // decimal(20,6) comment '支付金额',
- private Double balancePayFee; // decimal(20,6) comment '余额支付',
- private Double discountFee; // decimal(20,6) comment '折扣金额',
- private Double promotionFullReduction; //DECIMAL(20,2) DEFAULT 0.00 NULL COMMENT '促销满减优惠' AFTER `discountFee`,
- private Integer spID; // bigint(11),
- private Integer mainSpID; // bigint(6),
- private String note; // text comment '订单备注',
- private Integer clubID; // bigint(11),
- private String clubScanTime; // varchar(19),
- private String payWay; // 支付方式,(协销订单可能会存在多种进账方式用,隔开),
- private Integer payTypeID; // int(11) comment '支付类型',
- private String orderSource; // char(1) comment '订单来源',
- private String orderTime; // datetime comment '订单提交时间',
- private String confirmTime; // datetime comment '订单确认时间',
- private String cooFreeFlag; // char(1) comment '库分期免息状态',
- private Integer cooFreeRate; // int(3) comment '库分期分期费率',
- private Double cooFreeAmount; // decimal(20,2) comment '库分期免息金额',
- private String confirmFlag; // char(1) comment '订单确认标志',
- private Integer clauseID; // bigint(11) comment '条款ID',
- private String clauseContent; // text comment '条款内容',
- private String clauseName; // varchar(50) comment '条款名称',
- private String freePostFlag; // char(1) comment 免邮标志 运费:-1到付,0包邮,1需要运费
- private Double freight; // decimal(20,0) comment '运费' v5.0版本已废弃,运费已使用商品形式存储,
- // private Integer freePostageTicketID; // bigint(11) comment '包邮券ID',
- private Integer buyUserID;// 下单人
- private String orderType;// 订单类型 0协销订单、 1普通订单、 2呵呵订单
- private List<NewShopOrder> newShopOrders;
- private OrderUserInfo bpOrderUserinfo; //订单用户信息表
- private OrderInvoice orderInvoice;
- private Integer productCount; // 商品总数
- private Integer presentCount; // 赠送总数
- private Integer promotionalGiftsCount; // INT(11) NULL COMMENT '促销赠品总数' AFTER `presentCount
- private String payTime; //订单支付时间
- private String payFlag;//是否已支付 未支付0 已支付1
- private String onlinePayFlag;//能否显示支付 :0 能线上 1 线下
- private Double preferential; //总优惠 自助下单活动优惠 协销下单price-折后单价
- private String splitFlag; // 订单能否拆分 1 为可拆分, 0为不可拆分
- private String closeReason; //订单取消原因
- private String invoiceFlag; //是否开发票 0 不开 1 开发票
- // ---------------- v5.0.0 新加
- private String receiptStatus; //(收款买家)收款状态:1待收款、2部分收款、3已收款
- private String payStatus; //(付款供应商)付款状态:1待付款、2部分付款、3已付款
- private String sendOutStatus; //发货状态:1待发货、2部分发货、3已发货
- private String refundType; //退货退款类型:1部分退、2全部退
- private String postageOrderFlag = "0"; //邮费订单标识 1是邮费订单 0不是邮费订单
- private Double paidAmount;//已付金额(用户已支付金额包括余额支付和线上线下支付)
- private Double totalDiscount;//订单退款已退的经理折扣金额
- private Integer zeroCostFlag;//订单0成本标识
- private Integer userBeans;//采美豆抵扣运费数量(100:1)
- // ----------------- v5.0.0 end
- //------------- 虚拟字段 ----------------------------
- private String shopName; //供应商
- private String receiver;//收货人
- private String buyer;//买家
- private String alreadyReceipt;//已收金额(需要包含运费,目前只存在普通订单存在运费)
- private String unReceipt;//未收金额(需要包含运费,目前只存在普通订单存在运费)
- private String paid;//已付金额(不需要包含运费,等同于订单商品金额)
- private String unpaid;//未付金额(不需要包含运费,等同于订单商品金额)
- private String brokerage;//佣金
- private String buyerName; //买家名称
- private String mobile; //手机
- private String address; //地址
- private String startTime;
- private String endTime;
- private String startConfirmTime;
- private String endConfirmTime;
- private String startRefundTime;
- private String endRefundTime;
- private Double totalAddedValueTax;//总税费
- private String shopNameInfo;//
- private String orderRefundType = "";//
- private String returnedPurchaseStatus;//1审核中,0不是审核中
- private String applyReturnedPurchaseFlag;//0不可以申请,1可以申请(此标记只用于是否存在审核中或者审核不通过记录,存在记录则不可以申请)
- private String spName;
- private Integer serviceProviderId; //协销Id
- private String productName; //商品名称(根据商品名称筛选订单)
- private List<NewOrderProduct> orderProduct;// 订单内的商品集合
- // 促销
- private List<CmPromotion> promotions;
- private String searchflag;//0搜索,1导出
- private String[] shopNote; //子订单备注 修改时用来记录一下的
- private String rebateOrder; //是不是返佣订单 是的1, 不是的0
- private String[] ps; //付款状态集合
- private String shopOrderNo;// varchar(30) comment '子订单编号'
- private String toAudit; //有没有收款待审核的订单 , 有的1
- private Double shouldPayShopAmount; //付供应商总金额
- private Double returnValue; //退款总金额
- private Boolean returnedFreightFlag;//机构运费退货标识
- private String clubName; //会所名称
- // 收款确认类型(1小额抹平确认,2大额抹平确认,3大额退款余额,4确认关联)
- private String confirmType;
- private Double orderReceivedAmount;//订单已收金额(此收款只计算线上线下收款记录payableAmount表金额)
- private Double returnBalanceAmount;// 退款余额金额
- private String secondHandOrderFlag;//二手商品订单标识 0非二手商品订单、 1二手商品订单
- private boolean receiptOrderFlag;// 判断订单中抹平的订单是否是和多个订单一起支付的,
- private Integer rechargeGoods; //1,缴纳订金;2,充值余额
- private String affirmPaymentFlag;// 二手订单确认付款供应商标识 0未确认,1已确认
- private String rebateFlag;//返佣订单标识,0非返佣订单,1返佣订单
- private String associationType;//订单关联方式: 1手动 2自动
- private Double ableUserMoney; //当前下单用户可用余额
- private String organizeStoreName;//组织门店名称
- public List<CmPromotion> getPromotions() {
- return promotions;
- }
- public void setPromotions(List<CmPromotion> promotions) {
- this.promotions = promotions;
- }
- public Double getPromotionFullReduction() {
- return promotionFullReduction;
- }
- public void setPromotionFullReduction(Double promotionFullReduction) {
- this.promotionFullReduction = promotionFullReduction;
- }
- public Integer getPromotionalGiftsCount() {
- return promotionalGiftsCount;
- }
- public void setPromotionalGiftsCount(Integer promotionalGiftsCount) {
- this.promotionalGiftsCount = promotionalGiftsCount;
- }
- public String getClubName() {
- return clubName;
- }
- public void setClubName(String clubName) {
- this.clubName = clubName;
- }
- public Double getReturnValue() {
- return returnValue;
- }
- public void setReturnValue(Double returnValue) {
- this.returnValue = returnValue;
- }
- public Double getShouldPayShopAmount() {
- return shouldPayShopAmount;
- }
- public void setShouldPayShopAmount(Double shouldPayShopAmount) {
- this.shouldPayShopAmount = shouldPayShopAmount;
- }
- public Integer getOrganizeID() {
- return organizeID;
- }
- public void setOrganizeID(Integer organizeID) {
- this.organizeID = organizeID;
- }
- public String getToAudit() {
- return toAudit;
- }
- public void setToAudit(String toAudit) {
- this.toAudit = toAudit;
- }
- public String[] getPs() {
- return ps;
- }
- public void setPs(String[] ps) {
- this.ps = ps;
- }
- public String getShopOrderNo() {
- return shopOrderNo;
- }
- public void setShopOrderNo(String shopOrderNo) {
- this.shopOrderNo = shopOrderNo;
- }
- public Integer getOrderID() {
- return orderID;
- }
- public void setOrderID(Integer orderID) {
- this.orderID = orderID;
- }
- public Double getShouldPayProduct() {
- return shouldPayProduct;
- }
- public void setShouldPayProduct(Double shouldPayProduct) {
- this.shouldPayProduct = shouldPayProduct;
- }
- public String getSearchflag() {
- return searchflag;
- }
- public void setSearchflag(String searchflag) {
- this.searchflag = searchflag;
- }
- public String getOrderNo() {
- return orderNo;
- }
- public void setOrderNo(String orderNo) {
- this.orderNo = orderNo;
- }
- public Integer getUserID() {
- return userID;
- }
- public void setUserID(Integer userID) {
- this.userID = userID;
- }
- public String getShopOrderIDs() {
- return shopOrderIDs;
- }
- public void setShopOrderIDs(String shopOrderIDs) {
- this.shopOrderIDs = shopOrderIDs;
- }
- public String getOrderSubmitType() {
- return orderSubmitType;
- }
- public void setOrderSubmitType(String orderSubmitType) {
- this.orderSubmitType = orderSubmitType;
- }
- public String getStatus() {
- return status;
- }
- public void setStatus(String status) {
- this.status = status;
- }
- public Double getProductTotalFee() {
- return productTotalFee;
- }
- public void setProductTotalFee(Double productTotalFee) {
- this.productTotalFee = productTotalFee;
- }
- public Double getOrderTotalFee() {
- return orderTotalFee;
- }
- public void setOrderTotalFee(Double orderTotalFee) {
- this.orderTotalFee = orderTotalFee;
- }
- public Double getPayTotalFee() {
- return payTotalFee;
- }
- public void setPayTotalFee(Double payTotalFee) {
- this.payTotalFee = payTotalFee;
- }
- public Double getBalancePayFee() {
- return balancePayFee;
- }
- public void setBalancePayFee(Double balancePayFee) {
- this.balancePayFee = balancePayFee;
- }
- public Double getDiscountFee() {
- return discountFee;
- }
- public void setDiscountFee(Double discountFee) {
- this.discountFee = discountFee;
- }
- public Integer getSpID() {
- return spID;
- }
- public void setSpID(Integer spID) {
- this.spID = spID;
- }
- public Integer getMainSpID() {
- return mainSpID;
- }
- public void setMainSpID(Integer mainSpID) {
- this.mainSpID = mainSpID;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public Integer getClubID() {
- return clubID;
- }
- public void setClubID(Integer clubID) {
- this.clubID = clubID;
- }
- public String getClubScanTime() {
- return clubScanTime;
- }
- public void setClubScanTime(String clubScanTime) {
- this.clubScanTime = clubScanTime;
- }
- public String getPayWay() {
- return payWay;
- }
- public void setPayWay(String payWay) {
- this.payWay = payWay;
- }
- public Integer getPayTypeID() {
- return payTypeID;
- }
- public void setPayTypeID(Integer payTypeID) {
- this.payTypeID = payTypeID;
- }
- public String getOrderSource() {
- return orderSource;
- }
- public void setOrderSource(String orderSource) {
- this.orderSource = orderSource;
- }
- public String getOrderTime() {
- return orderTime;
- }
- public void setOrderTime(String orderTime) {
- this.orderTime = orderTime;
- }
- public String getCooFreeFlag() {
- return cooFreeFlag;
- }
- public void setCooFreeFlag(String cooFreeFlag) {
- this.cooFreeFlag = cooFreeFlag;
- }
- public Integer getCooFreeRate() {
- return cooFreeRate;
- }
- public void setCooFreeRate(Integer cooFreeRate) {
- this.cooFreeRate = cooFreeRate;
- }
- public Double getCooFreeAmount() {
- return cooFreeAmount;
- }
- public void setCooFreeAmount(Double cooFreeAmount) {
- this.cooFreeAmount = cooFreeAmount;
- }
- public String getConfirmFlag() {
- return confirmFlag;
- }
- public void setConfirmFlag(String confirmFlag) {
- this.confirmFlag = confirmFlag;
- }
- public Integer getClauseID() {
- return clauseID;
- }
- public void setClauseID(Integer clauseID) {
- this.clauseID = clauseID;
- }
- public String getClauseContent() {
- return clauseContent;
- }
- public void setClauseContent(String clauseContent) {
- this.clauseContent = clauseContent;
- }
- public String getClauseName() {
- return clauseName;
- }
- public void setClauseName(String clauseName) {
- this.clauseName = clauseName;
- }
- public String getFreePostFlag() {
- return freePostFlag;
- }
- public void setFreePostFlag(String freePostFlag) {
- this.freePostFlag = freePostFlag;
- }
- public Double getFreight() {
- return freight;
- }
- public void setFreight(Double freight) {
- this.freight = freight;
- }
- public Integer getBuyUserID() {
- return buyUserID;
- }
- public void setBuyUserID(Integer buyUserID) {
- this.buyUserID = buyUserID;
- }
- public String getOrderType() {
- return orderType;
- }
- public void setOrderType(String orderType) {
- this.orderType = orderType;
- }
- public List<NewShopOrder> getNewShopOrders() {
- return newShopOrders;
- }
- public void setNewShopOrders(List<NewShopOrder> newShopOrders) {
- this.newShopOrders = newShopOrders;
- }
- public OrderInvoice getOrderInvoice() {
- return orderInvoice;
- }
- public void setOrderInvoice(OrderInvoice orderInvoice) {
- this.orderInvoice = orderInvoice;
- }
- public Integer getProductCount() {
- return productCount;
- }
- public void setProductCount(Integer productCount) {
- this.productCount = productCount;
- }
- public Integer getPresentCount() {
- return presentCount;
- }
- public void setPresentCount(Integer presentCount) {
- this.presentCount = presentCount;
- }
- @Transient
- public List<NewOrderProduct> getOrderProduct() {
- return orderProduct;
- }
- public void setOrderProduct(List<NewOrderProduct> orderProduct) {
- this.orderProduct = orderProduct;
- }
- @Transient
- public String getBuyerName() {
- return buyerName;
- }
- public void setBuyerName(String buyerName) {
- this.buyerName = buyerName;
- }
- @Transient
- public String getStartTime() {
- return startTime;
- }
- public void setStartTime(String startTime) {
- this.startTime = startTime;
- }
- @Transient
- public String getEndTime() {
- return endTime;
- }
- public void setEndTime(String endTime) {
- this.endTime = endTime;
- }
- @Transient
- public String getShopName() {
- return shopName;
- }
- public void setShopName(String shopName) {
- this.shopName = shopName;
- }
- @Transient
- public String getReceiver() {
- return receiver;
- }
- public void setReceiver(String receiver) {
- this.receiver = receiver;
- }
- @Transient
- public String getBuyer() {
- return buyer;
- }
- public void setBuyer(String buyer) {
- this.buyer = buyer;
- }
- @Transient
- public String getAlreadyReceipt() {
- return alreadyReceipt;
- }
- public void setAlreadyReceipt(String alreadyReceipt) {
- this.alreadyReceipt = alreadyReceipt;
- }
- @Transient
- public String getUnReceipt() {
- return unReceipt;
- }
- public void setUnReceipt(String unReceipt) {
- this.unReceipt = unReceipt;
- }
- @Transient
- public String getPaid() {
- return paid;
- }
- public void setPaid(String paid) {
- this.paid = paid;
- }
- @Transient
- public String getUnpaid() {
- return unpaid;
- }
- public void setUnpaid(String unpaid) {
- this.unpaid = unpaid;
- }
- @Transient
- public String getBrokerage() {
- return brokerage;
- }
- public void setBrokerage(String brokerage) {
- this.brokerage = brokerage;
- }
- public OrderUserInfo getBpOrderUserinfo() {
- return bpOrderUserinfo;
- }
- public void setBpOrderUserinfo(OrderUserInfo bpOrderUserinfo) {
- this.bpOrderUserinfo = bpOrderUserinfo;
- }
- public String getPayTime() {
- return payTime;
- }
- public void setPayTime(String payTime) {
- this.payTime = payTime;
- }
- public Double getPreferential() {
- return preferential;
- }
- public void setPreferential(Double preferential) {
- this.preferential = preferential;
- }
- @Transient
- public String getMobile() {
- return mobile;
- }
- public void setMobile(String mobile) {
- this.mobile = mobile;
- }
- @Transient
- public String getAddress() {
- return address;
- }
- public void setAddress(String address) {
- this.address = address;
- }
- @Transient
- public String getSplitFlag() {
- return splitFlag;
- }
- public void setSplitFlag(String splitFlag) {
- this.splitFlag = splitFlag;
- }
- @Transient
- public Double getTotalAddedValueTax() {
- return totalAddedValueTax;
- }
- public void setTotalAddedValueTax(Double totalAddedValueTax) {
- this.totalAddedValueTax = totalAddedValueTax;
- }
- public String getPayFlag() {
- return payFlag;
- }
- public void setPayFlag(String payFlag) {
- this.payFlag = payFlag;
- }
- public String getOnlinePayFlag() {
- return onlinePayFlag;
- }
- public void setOnlinePayFlag(String onlinePayFlag) {
- this.onlinePayFlag = onlinePayFlag;
- }
- public String getHasActProduct() {
- return hasActProduct;
- }
- public void setHasActProduct(String hasActProduct) {
- this.hasActProduct = hasActProduct;
- }
- public String getConfirmTime() {
- return confirmTime;
- }
- public void setConfirmTime(String confirmTime) {
- this.confirmTime = confirmTime;
- }
- public String getCloseReason() {
- return closeReason;
- }
- public void setCloseReason(String closeReason) {
- this.closeReason = closeReason;
- }
- @Transient
- public String getShopNameInfo() {
- return shopNameInfo;
- }
- public void setShopNameInfo(String shopNameInfo) {
- this.shopNameInfo = shopNameInfo;
- }
- public String getInvoiceFlag() {
- return invoiceFlag;
- }
- public void setInvoiceFlag(String invoiceFlag) {
- this.invoiceFlag = invoiceFlag;
- }
- public Double getPayableAmount() {
- return payableAmount;
- }
- public void setPayableAmount(Double payableAmount) {
- this.payableAmount = payableAmount;
- }
- public String getReceiptStatus() {
- return receiptStatus;
- }
- public void setReceiptStatus(String receiptStatus) {
- this.receiptStatus = receiptStatus;
- }
- public String getPayStatus() {
- return payStatus;
- }
- public void setPayStatus(String payStatus) {
- this.payStatus = payStatus;
- }
- public String getSendOutStatus() {
- return sendOutStatus;
- }
- public void setSendOutStatus(String sendOutStatus) {
- this.sendOutStatus = sendOutStatus;
- }
- public String getRefundType() {
- return refundType;
- }
- public void setRefundType(String refundType) {
- this.refundType = refundType;
- }
- public String getStartRefundTime() {
- return startRefundTime;
- }
- public void setStartRefundTime(String startRefundTime) {
- this.startRefundTime = startRefundTime;
- }
- public String getEndRefundTime() {
- return endRefundTime;
- }
- public void setEndRefundTime(String endRefundTime) {
- this.endRefundTime = endRefundTime;
- }
- public String getOrderRefundType() {
- return orderRefundType;
- }
- public void setOrderRefundType(String orderRefundType) {
- this.orderRefundType = orderRefundType;
- }
- public String[] getShopNote() {
- return shopNote;
- }
- public void setShopNote(String[] shopNote) {
- this.shopNote = shopNote;
- }
- public String getPostageOrderFlag() {
- return postageOrderFlag;
- }
- public void setPostageOrderFlag(String postageOrderFlag) {
- this.postageOrderFlag = postageOrderFlag;
- }
- @Transient
- public String getRebateOrder() {
- return rebateOrder;
- }
- public void setRebateOrder(String rebateOrder) {
- this.rebateOrder = rebateOrder;
- }
- @Transient
- public String getReturnedPurchaseStatus() {
- return returnedPurchaseStatus;
- }
- public void setReturnedPurchaseStatus(String returnedPurchaseStatus) {
- this.returnedPurchaseStatus = returnedPurchaseStatus;
- }
- @Transient
- public String getSpName() {
- return spName;
- }
- public void setSpName(String spName) {
- this.spName = spName;
- }
- public String getApplyReturnedPurchaseFlag() {
- return applyReturnedPurchaseFlag;
- }
- public void setApplyReturnedPurchaseFlag(String applyReturnedPurchaseFlag) {
- this.applyReturnedPurchaseFlag = applyReturnedPurchaseFlag;
- }
- @Transient
- public Double getPaidAmount() {
- return paidAmount;
- }
- public void setPaidAmount(Double paidAmount) {
- this.paidAmount = paidAmount;
- }
- @Transient
- public Double getTotalDiscount() {
- return totalDiscount;
- }
- public void setTotalDiscount(Double totalDiscount) {
- this.totalDiscount = totalDiscount;
- }
- public String getStartConfirmTime() {
- return startConfirmTime;
- }
- public void setStartConfirmTime(String startConfirmTime) {
- this.startConfirmTime = startConfirmTime;
- }
- public String getEndConfirmTime() {
- return endConfirmTime;
- }
- public void setEndConfirmTime(String endConfirmTime) {
- this.endConfirmTime = endConfirmTime;
- }
- public String getConfirmType() {
- return confirmType;
- }
- public void setConfirmType(String confirmType) {
- this.confirmType = confirmType;
- }
- public Double getOrderReceivedAmount() {
- return orderReceivedAmount;
- }
- public void setOrderReceivedAmount(Double orderReceivedAmount) {
- this.orderReceivedAmount = orderReceivedAmount;
- }
- public Double getReturnBalanceAmount() {
- return returnBalanceAmount;
- }
- public void setReturnBalanceAmount(Double returnBalanceAmount) {
- this.returnBalanceAmount = returnBalanceAmount;
- }
- public String getSecondHandOrderFlag() {
- return secondHandOrderFlag;
- }
- public void setSecondHandOrderFlag(String secondHandOrderFlag) {
- this.secondHandOrderFlag = secondHandOrderFlag;
- }
- public boolean isReceiptOrderFlag() {
- return receiptOrderFlag;
- }
- public void setReceiptOrderFlag(boolean receiptOrderFlag) {
- this.receiptOrderFlag = receiptOrderFlag;
- }
- public Integer getRechargeGoods() {
- return rechargeGoods;
- }
- public void setRechargeGoods(Integer rechargeGoods) {
- this.rechargeGoods = rechargeGoods;
- }
- public String getAffirmPaymentFlag() {
- return affirmPaymentFlag;
- }
- public void setAffirmPaymentFlag(String affirmPaymentFlag) {
- this.affirmPaymentFlag = affirmPaymentFlag;
- }
- public String getRebateFlag() {
- return rebateFlag;
- }
- public void setRebateFlag(String rebateFlag) {
- this.rebateFlag = rebateFlag;
- }
- public Integer getZeroCostFlag() {
- return zeroCostFlag;
- }
- public void setZeroCostFlag(Integer zeroCostFlag) {
- this.zeroCostFlag = zeroCostFlag;
- }
- public Integer getUserBeans() {
- return userBeans;
- }
- public void setUserBeans(Integer userBeans) {
- this.userBeans = userBeans;
- }
- public String getAssociationType() {
- return associationType;
- }
- public void setAssociationType(String associationType) {
- this.associationType = associationType;
- }
- public Boolean getReturnedFreightFlag() {
- return returnedFreightFlag;
- }
- public void setReturnedFreightFlag(Boolean returnedFreightFlag) {
- this.returnedFreightFlag = returnedFreightFlag;
- }
- public Integer getServiceProviderId() {
- return serviceProviderId;
- }
- public void setServiceProviderId(Integer serviceProviderId) {
- this.serviceProviderId = serviceProviderId;
- }
- public String getProductName() {
- return productName;
- }
- public void setProductName(String productName) {
- this.productName = productName;
- }
- public Double getAbleUserMoney() {
- return ableUserMoney;
- }
- public void setAbleUserMoney(Double ableUserMoney) {
- this.ableUserMoney = ableUserMoney;
- }
- public Integer getOrganizeStoreId() {
- return organizeStoreId;
- }
- public void setOrganizeStoreId(Integer organizeStoreId) {
- this.organizeStoreId = organizeStoreId;
- }
- public String getOrganizeStoreName() {
- return organizeStoreName;
- }
- public void setOrganizeStoreName(String organizeStoreName) {
- this.organizeStoreName = organizeStoreName;
- }
- }
|