| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684 |
- package com.goafanti.order.bo;
- import com.goafanti.common.utils.excel.Excel;
- import java.math.BigDecimal;
- public class OutOrderProject {
- /**
- * 订单编号
- */
- private String orderNo;
- /**
- * 销售类型 0=电话新开发,1=电话自带资源,2=网络,3=渠道,4=转介绍,5=其他,6=高新复购,7=其他复购,8=私有/渠道
- */
- @Excel(name = "销售类型",readConverterExp = "0=电话新开发,1=电话自带资源,2=网络,3=渠道,4=转介绍,5=其他,6=高新复购,7=其他复购,8=私有/渠道")
- private Integer salesType;
- /**
- * 订单类型(服务类型)
- */
- @Excel(name = "订单类型")
- private String serviceType;
- /**
- * 清算状态(结算状态) 0-首付待付请,1-尾款待付清,2-已付请,3-部分退款,4-全部退款
- */
- @Excel(name = "结算状态",readConverterExp = "0=首付待付请,1=尾款待付清,2=已付请,3=部分退款,4=全部退款")
- private Integer liquidationStatus;
- /**
- * 催款节点统计
- */
- @Excel(name = "催款节点")
- private String dunNodeContent;
- /**
- * 是否会员
- */
- @Excel(name = "是否会员",readConverterExp = "0=否,1=是",width = 10)
- private Integer projectType;
- /**
- * 大客户
- */
- @Excel(name = "大客户",readConverterExp = "0=否,1=是",width = 10)
- private Integer bigCustomer;
- /**
- * 是否特批 0-非特批 ,1-负责人审核,2-负责人通过,3-负责人驳回 4董事长待审核 5董事长通过 6董事长驳回
- */
- @Excel(name = "是否特批",readConverterExp = "0=非特批,1=特批,2=特批,3=特批,4=特批,5=特批,6=特批",width = 10)
- private String approval;
- /**
- * 签单时间
- */
- @Excel(name = "签单时间",width = 10)
- private String signTime;
- /**
- * 派单时间
- */
- @Excel(name = "派单时间")
- private String createTime;
- /**
- * 公司名称
- */
- @Excel(name = "公司名称")
- private String buyerName;
- /**
- * 合同编号
- */
- @Excel(name = "合同编号")
- private String contractNo;
- /**
- * 合同类型
- */
- @Excel(name = "合同类型")
- private String htlx;
- /**
- * 省份
- */
- @Excel(name = "省份")
- private String province;
- /**
- * 派单部门
- */
- @Excel(name = "派单部门")
- private String depName;
- /**
- * 总金额
- */
- @Excel(name = "签单金额",scale = 6,width = 10)
- private BigDecimal totalAmount;
- /**
- * 合同收款比例
- */
- @Excel(name = "合同收款比例",width = 10)
- private String contractAmountProportion;
- /**
- * 应收款
- */
- @Excel(name = "应收款",scale = 6,width = 10)
- private BigDecimal orderReceivables;
- /**
- * 已收款
- */
- @Excel(name = "已收款",scale = 6,width = 10)
- private BigDecimal settlementAmount;
- /**
- * 欠款
- */
- @Excel(name = "欠款",scale = 6,width = 10)
- private BigDecimal arrearsAmount;
- /**
- * 已报销
- */
- @Excel(name = "已报销",width = 10)
- private BigDecimal expenseAmount;
- /**
- * 应公出
- */
- @Excel(name = "应公出")
- private String shouldPublic;
- /**
- * 已公出
- */
- @Excel(name = "已公出")
- private String alreadyPublic;
- /**
- * 超出
- */
- @Excel(name = "超出")
- private String exceedPublic;
- /**
- * 成本金额
- */
- @Excel(name = "总成本",scale = 6,width = 10)
- private BigDecimal costAmount;
- /**
- * 成本实付
- */
- @Excel(name = "实付成本",scale = 6,width = 10)
- private BigDecimal paymentAmount;
- /**
- * 开票金额
- */
- @Excel(name = "已开票金额",scale = 6,width = 10)
- private BigDecimal invicueAmount;
- /**
- * 退款金额
- */
- @Excel(name = "退款金额",scale = 6,width = 10)
- private BigDecimal refundAmount;
- /**
- * 财务负责人
- */
- @Excel(name = "财务负责人")
- private String financeName;
- /**
- * 营销负责人
- */
- @Excel(name = "营销负责人")
- private String salesmanName;
- /**
- * 核算比例
- */
- @Excel(name = "核算比例")
- private String hsbl;
- /**
- * 订单情况 ,readConverterExp = "0=待签单,1=签单待审,2=签单审核通过,3=签单审核拒绝,4=已结项,5=已驳回,6=已退单"
- */
- @Excel(name = "订单情况")
- private String orderStatus;
- /**
- * 变更情况
- */
- @Excel(name = "变更情况")
- private String changeType;
- /**
- * 退单退款
- */
- @Excel(name = "退单退款")
- private String refundType;
- /**
- * 是否重报
- */
- @Excel(name = "是否重报")
- private String restatementType;
- /**
- * 是否科技项目(订单类型) 0认证项目 1科技项目 2 两化融化管理体系认证项目
- */
- @Excel(name = "是否科技项目")
- private String sortType;
- /**
- * 层级类型 0=否,1=国家级,2=省级,3=市级
- */
- private Integer lvlType;
- /**
- * 项目名称
- */
- @Excel(name = "项目名称")
- private String commodityName;
- /**
- * 本次年份
- */
- @Excel(name = "本次年份")
- private String serviceYear;
- /**
- * 服务年限
- */
- @Excel(name = "服务年限")
- private String serviceLife;
- /**
- * 服务年份
- */
- @Excel(name = "服务年份")
- private Integer yearSum;
- /**
- * 项目转入时间
- */
- @Excel(name = "项目转入时间")
- private String taskDistributionTime;
- /**
- * 项目数
- */
- @Excel(name = "项目数")
- private String commodityQuantity;
- /**
- * 项目成本
- */
- @Excel(name = "项目成本")
- private String projectCostAmount;
- /**
- * 项目状态
- */
- @Excel(name = "项目状态")
- private String projectStatus;
- /**
- * 项目启动时间
- */
- @Excel(name = "项目启动时间")
- private String taskStartTime;
- /**
- * 项目完成时间
- */
- @Excel(name = "项目完成时间")
- private String taskEndTime;
- /**
- * 技术组
- */
- @Excel(name = "技术组")
- private String jsz;
- /**
- * 项目负责人
- */
- @Excel(name = "项目负责人")
- private String receiverName;
- /**
- * 满意度
- */
- @Excel(name = "满意度",readConverterExp = "0=非常满意,1=满意,2=一般,3=不满意")
- private Integer satisfactionDegree;
- /**
- * 项目备注
- */
- @Excel(name = "项目备注")
- private String taskComment;
- public Integer getLvlType() {
- return lvlType;
- }
- public void setLvlType(Integer lvlType) {
- this.lvlType = lvlType;
- }
- public String getOrderNo() {
- return orderNo;
- }
- public void setOrderNo(String orderNo) {
- this.orderNo = orderNo;
- }
- public Integer getSalesType() {
- return salesType;
- }
- public void setSalesType(Integer salesType) {
- this.salesType = salesType;
- }
- public String getServiceType() {
- return serviceType;
- }
- public void setServiceType(String serviceType) {
- this.serviceType = serviceType;
- }
- public Integer getLiquidationStatus() {
- return liquidationStatus;
- }
- public void setLiquidationStatus(Integer liquidationStatus) {
- this.liquidationStatus = liquidationStatus;
- }
- public String getDunNodeContent() {
- return dunNodeContent;
- }
- public void setDunNodeContent(String dunNodeContent) {
- this.dunNodeContent = dunNodeContent;
- }
- public Integer getProjectType() {
- return projectType;
- }
- public void setProjectType(Integer projectType) {
- this.projectType = projectType;
- }
- public Integer getBigCustomer() {
- return bigCustomer;
- }
- public void setBigCustomer(Integer bigCustomer) {
- this.bigCustomer = bigCustomer;
- }
- public String getApproval() {
- return approval;
- }
- public void setApproval(String approval) {
- this.approval = approval;
- }
- public String getSignTime() {
- return signTime;
- }
- public void setSignTime(String signTime) {
- this.signTime = signTime;
- }
- public String getCreateTime() {
- return createTime;
- }
- public void setCreateTime(String createTime) {
- this.createTime = createTime;
- }
- public String getBuyerName() {
- return buyerName;
- }
- public void setBuyerName(String buyerName) {
- this.buyerName = buyerName;
- }
- public String getContractNo() {
- return contractNo;
- }
- public void setContractNo(String contractNo) {
- this.contractNo = contractNo;
- }
- public String getHtlx() {
- return htlx;
- }
- public void setHtlx(String htlx) {
- this.htlx = htlx;
- }
- public String getProvince() {
- return province;
- }
- public void setProvince(String province) {
- this.province = province;
- }
- public String getDepName() {
- return depName;
- }
- public void setDepName(String depName) {
- this.depName = depName;
- }
- public BigDecimal getTotalAmount() {
- return totalAmount;
- }
- public void setTotalAmount(BigDecimal totalAmount) {
- this.totalAmount = totalAmount;
- }
- public String getContractAmountProportion() {
- return contractAmountProportion;
- }
- public void setContractAmountProportion(String contractAmountProportion) {
- this.contractAmountProportion = contractAmountProportion;
- }
- public BigDecimal getOrderReceivables() {
- return orderReceivables;
- }
- public void setOrderReceivables(BigDecimal orderReceivables) {
- this.orderReceivables = orderReceivables;
- }
- public BigDecimal getSettlementAmount() {
- return settlementAmount;
- }
- public void setSettlementAmount(BigDecimal settlementAmount) {
- this.settlementAmount = settlementAmount;
- }
- public BigDecimal getArrearsAmount() {
- return arrearsAmount;
- }
- public void setArrearsAmount(BigDecimal arrearsAmount) {
- this.arrearsAmount = arrearsAmount;
- }
- public BigDecimal getExpenseAmount() {
- return expenseAmount;
- }
- public void setExpenseAmount(BigDecimal expenseAmount) {
- this.expenseAmount = expenseAmount;
- }
- public String getShouldPublic() {
- return shouldPublic;
- }
- public void setShouldPublic(String shouldPublic) {
- this.shouldPublic = shouldPublic;
- }
- public String getAlreadyPublic() {
- return alreadyPublic;
- }
- public void setAlreadyPublic(String alreadyPublic) {
- this.alreadyPublic = alreadyPublic;
- }
- public String getExceedPublic() {
- return exceedPublic;
- }
- public void setExceedPublic(String exceedPublic) {
- this.exceedPublic = exceedPublic;
- }
- public BigDecimal getCostAmount() {
- return costAmount;
- }
- public void setCostAmount(BigDecimal costAmount) {
- this.costAmount = costAmount;
- }
- public BigDecimal getPaymentAmount() {
- return paymentAmount;
- }
- public void setPaymentAmount(BigDecimal paymentAmount) {
- this.paymentAmount = paymentAmount;
- }
- public BigDecimal getInvicueAmount() {
- return invicueAmount;
- }
- public void setInvicueAmount(BigDecimal invicueAmount) {
- this.invicueAmount = invicueAmount;
- }
- public BigDecimal getRefundAmount() {
- return refundAmount;
- }
- public void setRefundAmount(BigDecimal refundAmount) {
- this.refundAmount = refundAmount;
- }
- public String getFinanceName() {
- return financeName;
- }
- public void setFinanceName(String financeName) {
- this.financeName = financeName;
- }
- public String getSalesmanName() {
- return salesmanName;
- }
- public void setSalesmanName(String salesmanName) {
- this.salesmanName = salesmanName;
- }
- public String getCommodityName() {
- return commodityName;
- }
- public void setCommodityName(String commodityName) {
- this.commodityName = commodityName;
- }
- public String getServiceYear() {
- return serviceYear;
- }
- public void setServiceYear(String serviceYear) {
- this.serviceYear = serviceYear;
- }
- public String getServiceLife() {
- return serviceLife;
- }
- public void setServiceLife(String serviceLife) {
- this.serviceLife = serviceLife;
- }
- public Integer getYearSum() {
- return yearSum;
- }
- public void setYearSum(Integer yearSum) {
- this.yearSum = yearSum;
- }
- public String getTaskDistributionTime() {
- return taskDistributionTime;
- }
- public void setTaskDistributionTime(String taskDistributionTime) {
- this.taskDistributionTime = taskDistributionTime;
- }
- public String getSortType() {
- return sortType;
- }
- public void setSortType(String sortType) {
- this.sortType = sortType;
- }
- public String getCommodityQuantity() {
- return commodityQuantity;
- }
- public void setCommodityQuantity(String commodityQuantity) {
- this.commodityQuantity = commodityQuantity;
- }
- public String getProjectCostAmount() {
- return projectCostAmount;
- }
- public void setProjectCostAmount(String projectCostAmount) {
- this.projectCostAmount = projectCostAmount;
- }
- public String getProjectStatus() {
- return projectStatus;
- }
- public void setProjectStatus(String projectStatus) {
- this.projectStatus = projectStatus;
- }
- public String getTaskStartTime() {
- return taskStartTime;
- }
- public void setTaskStartTime(String taskStartTime) {
- this.taskStartTime = taskStartTime;
- }
- public String getTaskEndTime() {
- return taskEndTime;
- }
- public void setTaskEndTime(String taskEndTime) {
- this.taskEndTime = taskEndTime;
- }
- public String getJsz() {
- return jsz;
- }
- public void setJsz(String jsz) {
- this.jsz = jsz;
- }
- public String getReceiverName() {
- return receiverName;
- }
- public void setReceiverName(String receiverName) {
- this.receiverName = receiverName;
- }
- public Integer getSatisfactionDegree() {
- return satisfactionDegree;
- }
- public void setSatisfactionDegree(Integer satisfactionDegree) {
- this.satisfactionDegree = satisfactionDegree;
- }
- public String getTaskComment() {
- return taskComment;
- }
- public void setTaskComment(String taskComment) {
- this.taskComment = taskComment;
- }
- public String getHsbl() {
- return hsbl;
- }
- public void setHsbl(String hsbl) {
- this.hsbl = hsbl;
- }
- public String getOrderStatus() {
- return orderStatus;
- }
- public void setOrderStatus(String orderStatus) {
- this.orderStatus = orderStatus;
- }
- public String getRestatementType() {
- return restatementType;
- }
- public void setRestatementType(String restatementType) {
- this.restatementType = restatementType;
- }
- public String getChangeType() {
- return changeType;
- }
- public void setChangeType(String changeType) {
- this.changeType = changeType;
- }
- public String getRefundType() {
- return refundType;
- }
- public void setRefundType(String refundType) {
- this.refundType = refundType;
- }
- }
|