PayLogDTO.java 697 B

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.mtgg.bean;
  2. import java.io.Serializable;
  3. public class PayLogDTO implements Serializable {
  4. private static final long serialVersionUID = -3780055231427704994L;
  5. private Integer totalFee;
  6. private String account;
  7. private String date;
  8. public Integer getTotalFee() {
  9. return totalFee;
  10. }
  11. public void setTotalFee(Integer totalFee) {
  12. this.totalFee = totalFee;
  13. }
  14. public String getAccount() {
  15. return account;
  16. }
  17. public void setAccount(String account) {
  18. this.account = account;
  19. }
  20. public String getDate() {
  21. return date;
  22. }
  23. public void setDate(String date) {
  24. this.date = date;
  25. }
  26. }