| @@ -146,10 +146,10 @@ public class WxBillOther extends BaseEntity { | |||||
| @Excel(name = "实际应收总金额(元)", width = 20, orderNum = "4") | @Excel(name = "实际应收总金额(元)", width = 20, orderNum = "4") | ||||
| @TableField(exist = false) | @TableField(exist = false) | ||||
| private String realreceivePayStr; | |||||
| private String realReceivePayStr; | |||||
| public String getRealReceivePayStr() { | public String getRealReceivePayStr() { | ||||
| return new BigDecimal(receivePay == null ? 0 : receivePay).divide(new BigDecimal(100)).toPlainString(); | |||||
| return new BigDecimal(realReceivePay == null ? 0 : realReceivePay).divide(new BigDecimal(100)).toPlainString(); | |||||
| } | } | ||||
| } | } | ||||
| @@ -154,9 +154,9 @@ public class WxBillOtherDeposit extends BaseEntity { | |||||
| @Excel(name = "实际应收总金额(元)", width = 20, orderNum = "4") | @Excel(name = "实际应收总金额(元)", width = 20, orderNum = "4") | ||||
| @TableField(exist = false) | @TableField(exist = false) | ||||
| private String realreceivePayStr; | |||||
| private String realReceivePayStr; | |||||
| public String getRealReceivePayStr() { | public String getRealReceivePayStr() { | ||||
| return new BigDecimal(receivePay == null ? 0 : receivePay).divide(new BigDecimal(100)).toPlainString(); | |||||
| return new BigDecimal(realReceivePay == null ? 0 : realReceivePay).divide(new BigDecimal(100)).toPlainString(); | |||||
| } | } | ||||
| } | } | ||||
| @@ -198,9 +198,9 @@ public class WxBillProperty extends BaseEntity { | |||||
| @Excel(name = "实际应收总金额(元)", width = 20, orderNum = "6") | @Excel(name = "实际应收总金额(元)", width = 20, orderNum = "6") | ||||
| @TableField(exist = false) | @TableField(exist = false) | ||||
| private String realreceivePayStr; | |||||
| private String realReceivePayStr; | |||||
| public String getRealReceivePayStr() { | public String getRealReceivePayStr() { | ||||
| return new BigDecimal(receivePay == null ? 0 : receivePay).divide(new BigDecimal(100)).toPlainString(); | |||||
| return new BigDecimal(realReceivePay == null ? 0 : realReceivePay).divide(new BigDecimal(100)).toPlainString(); | |||||
| } | } | ||||
| } | } | ||||
| @@ -212,10 +212,10 @@ public class WxBillRent extends BaseEntity { | |||||
| @Excel(name = "实际应收总金额(元)", width = 20, orderNum = "6") | @Excel(name = "实际应收总金额(元)", width = 20, orderNum = "6") | ||||
| @TableField(exist = false) | @TableField(exist = false) | ||||
| private String realreceivePayStr; | |||||
| private String realReceivePayStr; | |||||
| public String getRealReceivePayStr() { | public String getRealReceivePayStr() { | ||||
| return new BigDecimal(receivePay == null ? 0 : receivePay).divide(new BigDecimal(100)).toPlainString(); | |||||
| return new BigDecimal(realReceivePay == null ? 0 : realReceivePay).divide(new BigDecimal(100)).toPlainString(); | |||||
| } | } | ||||
| } | } | ||||