| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455 |
- package com.goafanti.common.model;
- import java.io.Serializable;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * new_order_change
- * @author
- */
- public class NewOrderChange implements Serializable {
- /**
- * id
- */
- private Integer id;
- /**
- * 订单编号
- */
- private String orderNo;
- /**
- * 流程状态 0营销员 1营销管理员 2技术员 3技术经理 4技术总监 5财务专员(退单) 6财务总监 7总裁 8董事长
- */
- private Integer processState;
- /**
- * 状态 0草稿 1审核中 2通过 3驳回 4完成 5撤销 6上传附件
- */
- private Integer status;
- /**
- * 变更类型 0退单退款 1项目及金额变更 2仅项目变更 3仅金额变更 4重报 5赠送
- */
- private Integer type;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 备注
- */
- private String remarks;
- /**
- * 图片地址
- */
- private String voucherUrl;
- /**
- * 总金额
- */
- private BigDecimal totalAmount;
- /**
- * 已收款
- */
- private BigDecimal settlementAmount;
- /**
- * 申请金额
- */
- private BigDecimal changeAmount;
- /**
- * 申请人
- */
- private String applicant;
- /**
- * 申请部门
- */
- private String depName;
- /**
- * 项目进度
- */
- private String projectState;
- /**
- * 发生成本费用
- */
- private BigDecimal zxsCost;
- /**
- * 咨询师备注(营销员日志备注)
- */
- private String zxsRemarks;
- /**
- * 收款时间
- */
- private Date paymentTime;
- /**
- * 收款金额
- */
- private BigDecimal paymentAmount;
- /**
- * 开票时间
- */
- private Date invoiceTime;
- /**
- * 已开票金额
- */
- private BigDecimal invoiceAmount;
- /**
- * 发票类型
- */
- private String invoiceType;
- /**
- * 发生成本
- */
- private BigDecimal cwCost;
- /**
- * 应退金额
- */
- private BigDecimal refundableAmount;
- /**
- * 财务备注
- */
- private String cwRemarks;
- /**
- * 预计成本费用
- */
- private BigDecimal estimateCost;
- /**
- * 预计退款
- */
- private BigDecimal estimateRefundable;
- /**
- * 累计退票
- */
- private BigDecimal refundInvoice;
- /**
- * 原订单编号
- */
- private String usedOrder;
- /**
- * 退款状态 0否 1是
- */
- private Integer refundStatus;
- /**
- * 退款凭证
- */
- private String refundUrl;
- /**
- * 驳回位置 (同流程状态)
- */
- private Integer backStatus;
- /**
- * 附件地址
- */
- private String attachmentUrl;
- /**
- * 合同图片
- */
- private String contractPictureUrl;
- /**
- * 首付金额
- */
- private BigDecimal firstAmount;
- private static final long serialVersionUID = 1L;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getOrderNo() {
- return orderNo;
- }
- public void setOrderNo(String orderNo) {
- this.orderNo = orderNo;
- }
- public Integer getProcessState() {
- return processState;
- }
- public void setProcessState(Integer processState) {
- this.processState = processState;
- }
- public Integer getStatus() {
- return status;
- }
- public void setStatus(Integer status) {
- this.status = status;
- }
- public Integer getType() {
- return type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getRemarks() {
- return remarks;
- }
- public void setRemarks(String remarks) {
- this.remarks = remarks;
- }
- public String getVoucherUrl() {
- return voucherUrl;
- }
- public void setVoucherUrl(String voucherUrl) {
- this.voucherUrl = voucherUrl;
- }
- public BigDecimal getTotalAmount() {
- return totalAmount;
- }
- public void setTotalAmount(BigDecimal totalAmount) {
- this.totalAmount = totalAmount;
- }
- public BigDecimal getSettlementAmount() {
- return settlementAmount;
- }
- public void setSettlementAmount(BigDecimal settlementAmount) {
- this.settlementAmount = settlementAmount;
- }
- public BigDecimal getChangeAmount() {
- return changeAmount;
- }
- public void setChangeAmount(BigDecimal changeAmount) {
- this.changeAmount = changeAmount;
- }
- public String getApplicant() {
- return applicant;
- }
- public void setApplicant(String applicant) {
- this.applicant = applicant;
- }
- public String getDepName() {
- return depName;
- }
- public void setDepName(String depName) {
- this.depName = depName;
- }
- public String getProjectState() {
- return projectState;
- }
- public void setProjectState(String projectState) {
- this.projectState = projectState;
- }
- public BigDecimal getZxsCost() {
- return zxsCost;
- }
- public void setZxsCost(BigDecimal zxsCost) {
- this.zxsCost = zxsCost;
- }
- public String getZxsRemarks() {
- return zxsRemarks;
- }
- public void setZxsRemarks(String zxsRemarks) {
- this.zxsRemarks = zxsRemarks;
- }
- public Date getPaymentTime() {
- return paymentTime;
- }
- public void setPaymentTime(Date paymentTime) {
- this.paymentTime = paymentTime;
- }
- public BigDecimal getPaymentAmount() {
- return paymentAmount;
- }
- public void setPaymentAmount(BigDecimal paymentAmount) {
- this.paymentAmount = paymentAmount;
- }
- public Date getInvoiceTime() {
- return invoiceTime;
- }
- public void setInvoiceTime(Date invoiceTime) {
- this.invoiceTime = invoiceTime;
- }
- public BigDecimal getInvoiceAmount() {
- return invoiceAmount;
- }
- public void setInvoiceAmount(BigDecimal invoiceAmount) {
- this.invoiceAmount = invoiceAmount;
- }
- public String getInvoiceType() {
- return invoiceType;
- }
- public void setInvoiceType(String invoiceType) {
- this.invoiceType = invoiceType;
- }
- public BigDecimal getCwCost() {
- return cwCost;
- }
- public void setCwCost(BigDecimal cwCost) {
- this.cwCost = cwCost;
- }
- public BigDecimal getRefundableAmount() {
- return refundableAmount;
- }
- public void setRefundableAmount(BigDecimal refundableAmount) {
- this.refundableAmount = refundableAmount;
- }
- public String getCwRemarks() {
- return cwRemarks;
- }
- public void setCwRemarks(String cwRemarks) {
- this.cwRemarks = cwRemarks;
- }
- public BigDecimal getEstimateCost() {
- return estimateCost;
- }
- public void setEstimateCost(BigDecimal estimateCost) {
- this.estimateCost = estimateCost;
- }
- public BigDecimal getEstimateRefundable() {
- return estimateRefundable;
- }
- public void setEstimateRefundable(BigDecimal estimateRefundable) {
- this.estimateRefundable = estimateRefundable;
- }
- public BigDecimal getRefundInvoice() {
- return refundInvoice;
- }
- public void setRefundInvoice(BigDecimal refundInvoice) {
- this.refundInvoice = refundInvoice;
- }
- public String getUsedOrder() {
- return usedOrder;
- }
- public void setUsedOrder(String usedOrder) {
- this.usedOrder = usedOrder;
- }
- public Integer getRefundStatus() {
- return refundStatus;
- }
- public void setRefundStatus(Integer refundStatus) {
- this.refundStatus = refundStatus;
- }
- public String getRefundUrl() {
- return refundUrl;
- }
- public void setRefundUrl(String refundUrl) {
- this.refundUrl = refundUrl;
- }
- public Integer getBackStatus() {
- return backStatus;
- }
- public void setBackStatus(Integer backStatus) {
- this.backStatus = backStatus;
- }
- public String getAttachmentUrl() {
- return attachmentUrl;
- }
- public void setAttachmentUrl(String attachmentUrl) {
- this.attachmentUrl = attachmentUrl;
- }
- public String getContractPictureUrl() {
- return contractPictureUrl;
- }
- public void setContractPictureUrl(String contractPictureUrl) {
- this.contractPictureUrl = contractPictureUrl;
- }
- public BigDecimal getFirstAmount() {
- return firstAmount;
- }
- public void setFirstAmount(BigDecimal firstAmount) {
- this.firstAmount = firstAmount;
- }
- }
|