BillPayInfoDto.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package com.fuzamei.dto;
  2. /**
  3. * @file_name: BillPayInfoDto
  4. * @Description:
  5. * @author: 刘林杰
  6. * @date: 五月 2018/5/14 16:51
  7. * @version:
  8. */
  9. public class BillPayInfoDto {
  10. private String accountId;//账户id
  11. private int billId; //流转表id
  12. private String inEnterprise; //持有企业
  13. private double money;
  14. private double payBillMoney;
  15. private Double rate;
  16. public String getAccountId() {
  17. return accountId;
  18. }
  19. public void setAccountId(String accountId) {
  20. this.accountId = accountId;
  21. }
  22. public String getInEnterprise() {
  23. return inEnterprise;
  24. }
  25. public void setInEnterprise(String inEnterprise) {
  26. this.inEnterprise = inEnterprise;
  27. }
  28. public double getMoneys() {
  29. return money;
  30. }
  31. public void setMoneys(double money) {
  32. this.money = money;
  33. }
  34. public double getPayBillMoney() {
  35. return payBillMoney;
  36. }
  37. public void setPayBillMoney(double payBillMoney) {
  38. this.payBillMoney = payBillMoney;
  39. }
  40. public Double getRate() {
  41. return rate;
  42. }
  43. public void setRate(Double rate) {
  44. this.rate = rate;
  45. }
  46. public int getBillId() {
  47. return billId;
  48. }
  49. public void setBillId(int billId) {
  50. this.billId = billId;
  51. }
  52. }