PledgeInfoDTO.java 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.fuzamei.dto;
  2. public class PledgeInfoDTO {
  3. private String accountId; //账户id
  4. private Integer orderActId; //流转表id
  5. private Double pledgeMoney; //质押份额
  6. private String inEnterprise; //收账企业/质押企业
  7. private Double annualRate; //年化利率
  8. private Double discountMoney; //贴现费
  9. private Long buyBackDate; //回购日期
  10. public String getAccountId() {
  11. return accountId;
  12. }
  13. public void setAccountId(String accountId) {
  14. this.accountId = accountId;
  15. }
  16. public Integer getOrderActId() {
  17. return orderActId;
  18. }
  19. public void setOrderActId(Integer orderActId) {
  20. this.orderActId = orderActId;
  21. }
  22. public Double getPledgeMoney() {
  23. return pledgeMoney;
  24. }
  25. public void setPledgeMoney(Double pledgeMoney) {
  26. this.pledgeMoney = pledgeMoney;
  27. }
  28. public String getInEnterprise() {
  29. return inEnterprise;
  30. }
  31. public void setInEnterprise(String inEnterprise) {
  32. this.inEnterprise = inEnterprise;
  33. }
  34. public Double getAnnualRate() {
  35. return annualRate;
  36. }
  37. public void setAnnualRate(Double annualRate) {
  38. this.annualRate = annualRate;
  39. }
  40. public Double getDiscountMoney() {
  41. return discountMoney;
  42. }
  43. public void setDiscountMoney(Double discountMoney) {
  44. this.discountMoney = discountMoney;
  45. }
  46. public Long getBuyBackDate() {
  47. return buyBackDate;
  48. }
  49. public void setBuyBackDate(Long buyBackDate) {
  50. this.buyBackDate = buyBackDate;
  51. }
  52. }