| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package com.goafanti.order.bo;
- import com.goafanti.common.utils.excel.Excel;
- import java.math.BigDecimal;
- public class OutSelectOrderDun {
- @Excel(name = "催收部分")
- private String depName;
- @Excel(name = "催收入")
- private String aName;
- private String aid;
- @Excel(name = "签单额(万元)")
- private BigDecimal totalAmount;
- @Excel(name = "应收款(万元)")
- private BigDecimal money;
- public String getAid() {
- return aid;
- }
- public void setAid(String aid) {
- this.aid = aid;
- }
- public String getDepName() {
- return depName;
- }
- public void setDepName(String depName) {
- this.depName = depName;
- }
- public String getaName() {
- return aName;
- }
- public void setaName(String aName) {
- this.aName = aName;
- }
- public BigDecimal getTotalAmount() {
- return totalAmount;
- }
- public void setTotalAmount(BigDecimal totalAmount) {
- this.totalAmount = totalAmount;
- }
- public BigDecimal getMoney() {
- return money;
- }
- public void setMoney(BigDecimal money) {
- this.money = money;
- }
- }
|