OutSelectOrderDun.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package com.goafanti.order.bo;
  2. import com.goafanti.common.utils.excel.Excel;
  3. import java.math.BigDecimal;
  4. public class OutSelectOrderDun {
  5. @Excel(name = "催收部分")
  6. private String depName;
  7. @Excel(name = "催收入")
  8. private String aName;
  9. private String aid;
  10. @Excel(name = "签单额(万元)")
  11. private BigDecimal totalAmount;
  12. @Excel(name = "应收款(万元)")
  13. private BigDecimal money;
  14. public String getAid() {
  15. return aid;
  16. }
  17. public void setAid(String aid) {
  18. this.aid = aid;
  19. }
  20. public String getDepName() {
  21. return depName;
  22. }
  23. public void setDepName(String depName) {
  24. this.depName = depName;
  25. }
  26. public String getaName() {
  27. return aName;
  28. }
  29. public void setaName(String aName) {
  30. this.aName = aName;
  31. }
  32. public BigDecimal getTotalAmount() {
  33. return totalAmount;
  34. }
  35. public void setTotalAmount(BigDecimal totalAmount) {
  36. this.totalAmount = totalAmount;
  37. }
  38. public BigDecimal getMoney() {
  39. return money;
  40. }
  41. public void setMoney(BigDecimal money) {
  42. this.money = money;
  43. }
  44. }