|
|
@@ -1,4 +1,199 @@
|
|
|
package com.goafanti.expenseAccount.bo;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
public class OutExpenseAccountStatistics {
|
|
|
+ private String aid;
|
|
|
+ private String aname;
|
|
|
+ /**
|
|
|
+ * 报销
|
|
|
+ */
|
|
|
+ private Integer bx;
|
|
|
+ /**
|
|
|
+ * 借支
|
|
|
+ */
|
|
|
+ private Integer jz;
|
|
|
+ /**
|
|
|
+ * 抵扣
|
|
|
+ */
|
|
|
+ private Integer dk;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 抵扣编号
|
|
|
+ */
|
|
|
+ private Integer debitId;
|
|
|
+ /**
|
|
|
+ * 目标类型 0=固定费用,1=报销订单
|
|
|
+ */
|
|
|
+ private Integer targetType;
|
|
|
+ /**
|
|
|
+ * 报销金额
|
|
|
+ */
|
|
|
+ private BigDecimal bxAmout;
|
|
|
+ /**
|
|
|
+ * 借支金额
|
|
|
+ */
|
|
|
+ private BigDecimal jzAmount;
|
|
|
+ /**
|
|
|
+ * 抵扣金额
|
|
|
+ */
|
|
|
+ private BigDecimal dkAmount;
|
|
|
+
|
|
|
+ private BigDecimal TotalAmount;
|
|
|
+ /**
|
|
|
+ * 未审核数
|
|
|
+ */
|
|
|
+ private Integer wshs;
|
|
|
+ /**
|
|
|
+ * 驳回数
|
|
|
+ */
|
|
|
+ private Integer bhs;
|
|
|
+ /**
|
|
|
+ * 固定费用金额
|
|
|
+ */
|
|
|
+ private BigDecimal gdfyAmount;
|
|
|
+ /**
|
|
|
+ * 报销订单金额
|
|
|
+ */
|
|
|
+ private BigDecimal bxddAmount;
|
|
|
+
|
|
|
+
|
|
|
+ public OutExpenseAccountStatistics() {
|
|
|
+ }
|
|
|
+
|
|
|
+ public OutExpenseAccountStatistics(String aid) {
|
|
|
+ this.aid = aid;
|
|
|
+ this.bx=0;
|
|
|
+ this.jz=0;
|
|
|
+ this.dk=0;
|
|
|
+ this.bxAmout=new BigDecimal(0);
|
|
|
+ this.jzAmount=new BigDecimal(0);
|
|
|
+ this.dkAmount=new BigDecimal(0);
|
|
|
+ this.TotalAmount=new BigDecimal(0);
|
|
|
+ this.gdfyAmount=new BigDecimal(0);
|
|
|
+ this.bxddAmount=new BigDecimal(0);
|
|
|
+ this.wshs=0;
|
|
|
+ this.bhs=0;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAname() {
|
|
|
+ return aname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAname(String aname) {
|
|
|
+ this.aname = aname;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getTotalAmount() {
|
|
|
+ return TotalAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTotalAmount(BigDecimal totalAmount) {
|
|
|
+ TotalAmount = totalAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getGdfyAmount() {
|
|
|
+ return gdfyAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGdfyAmount(BigDecimal gdfyAmount) {
|
|
|
+ this.gdfyAmount = gdfyAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getBxddAmount() {
|
|
|
+ return bxddAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBxddAmount(BigDecimal bxddAmount) {
|
|
|
+ this.bxddAmount = bxddAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAid() {
|
|
|
+ return aid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAid(String aid) {
|
|
|
+ this.aid = aid;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getBx() {
|
|
|
+ return bx;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBx(Integer bx) {
|
|
|
+ this.bx = bx;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getJz() {
|
|
|
+ return jz;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setJz(Integer jz) {
|
|
|
+ this.jz = jz;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getDk() {
|
|
|
+ return dk;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDk(Integer dk) {
|
|
|
+ this.dk = dk;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getDebitId() {
|
|
|
+ return debitId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDebitId(Integer debitId) {
|
|
|
+ this.debitId = debitId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTargetType() {
|
|
|
+ return targetType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTargetType(Integer targetType) {
|
|
|
+ this.targetType = targetType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getBxAmout() {
|
|
|
+ return bxAmout;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBxAmout(BigDecimal bxAmout) {
|
|
|
+ this.bxAmout = bxAmout;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getJzAmount() {
|
|
|
+ return jzAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setJzAmount(BigDecimal jzAmount) {
|
|
|
+ this.jzAmount = jzAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getDkAmount() {
|
|
|
+ return dkAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDkAmount(BigDecimal dkAmount) {
|
|
|
+ this.dkAmount = dkAmount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getWshs() {
|
|
|
+ return wshs;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setWshs(Integer wshs) {
|
|
|
+ this.wshs = wshs;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getBhs() {
|
|
|
+ return bhs;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBhs(Integer bhs) {
|
|
|
+ this.bhs = bhs;
|
|
|
+ }
|
|
|
}
|