BuyBackInfoDTO.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.fuzamei.dto;
  2. public class BuyBackInfoDTO {
  3. private String accountId;
  4. private String operatorEnterprise;
  5. private String ownEnterprise;
  6. private Integer orderActId;
  7. private Long remainingDays;
  8. private Double annualRate;
  9. private Double paidMoney;
  10. public String getAccountId() {
  11. return accountId;
  12. }
  13. public void setAccountId(String accountId) {
  14. this.accountId = accountId;
  15. }
  16. public String getOwnEnterprise() {
  17. return ownEnterprise;
  18. }
  19. public void setOwnEnterprise(String ownEnterprise) {
  20. this.ownEnterprise = ownEnterprise;
  21. }
  22. public String getOperatorEnterprise() {
  23. return operatorEnterprise;
  24. }
  25. public void setOperatorEnterprise(String operatorEnterprise) {
  26. this.operatorEnterprise = operatorEnterprise;
  27. }
  28. public Integer getOrderActId() {
  29. return orderActId;
  30. }
  31. public void setOrderActId(Integer orderActId) {
  32. this.orderActId = orderActId;
  33. }
  34. public Long getRemainingDays() {
  35. return remainingDays;
  36. }
  37. public void setRemainingDays(Long remainingDays) {
  38. this.remainingDays = remainingDays;
  39. }
  40. public Double getAnnualRate() {
  41. return annualRate;
  42. }
  43. public void setAnnualRate(Double annualRate) {
  44. this.annualRate = annualRate;
  45. }
  46. public Double getPaidMoney() {
  47. return paidMoney;
  48. }
  49. public void setPaidMoney(Double paidMoney) {
  50. this.paidMoney = paidMoney;
  51. }
  52. }